Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Build] Drop manylinux2014 wheel support #8581

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,49 +156,6 @@ jobs:
destination_dir: built-wheels/${{ inputs.build_id }}/${{ !matrix.designated && 'matrix/' || '' }}
endpoint: http://botmaster.tgr:9000

build_manylinux2014:
name: Build manylinux2014
timeout-minutes: 30
runs-on: [self-hosted, online, Linux, build]
strategy:
fail-fast: false
matrix:
python: ${{ fromJSON(inputs.python) }}
_designated: ['']
include:
- _designated: ''
designated: designated
env:
TAICHI_CMAKE_ARGS: >-
-DTI_WITH_OPENGL:BOOL=OFF
-DTI_WITH_VULKAN:BOOL=OFF
-DTI_BUILD_TESTS:BOOL=ON

steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'

- name: Build
run: |
. .github/workflows/scripts/common-utils.sh

ci-docker-run-gpu \
-v $(pwd):/home/dev/taichi \
registry.botmaster.tgr/taichi-build-manylinux2014-cuda:${{ env.CI_IMAGE_VERSION }} \
/home/dev/taichi/build.py ${NIGHTLY:+--nightly} --python=${{ matrix.python }} ${SHOULD_TAG_CONFIG:+--tag-config}

- name: Upload Built Wheel
uses: shallwefootball/s3-upload-action@v1.3.3
with:
aws_key_id: ${{ secrets.BOT_MINIO_ACCESS_KEY }}
aws_secret_access_key: ${{ secrets.BOT_MINIO_SECRET_KEY }}
aws_bucket: built-wheels
source_dir: dist
destination_dir: built-wheels/${{ inputs.build_id }}/${{ !matrix.designated && 'matrix/' || '' }}
endpoint: http://botmaster.tgr:9000

build_amdgpu_linux:
name: Build AMDGPU
timeout-minutes: 30
Expand Down
55 changes: 1 addition & 54 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,59 +120,6 @@ jobs:
env:
PY: ${{ matrix.python }}

build_and_test_manylinux2014:
name: Build and Upload (manylinux2014)
needs: matrix_prep
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix_prep.outputs.matrix) }}
runs-on: [self-hosted, cuda, cn, release]
env:
PY: ${{ matrix.python }}
PROJECT_NAME: ${{ matrix.name }}
TAICHI_CMAKE_ARGS: >-
-DTI_WITH_OPENGL:BOOL=OFF
-DTI_WITH_VULKAN:BOOL=OFF
-DTI_BUILD_TESTS:BOOL=ON

steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'

- name: Prepare Environment
run: |
. .github/workflows/scripts/common-utils.sh
prepare-build-cache
echo CI_DOCKER_RUN_EXTRA_ARGS="-v $(pwd):/home/dev/taichi" >> $GITHUB_ENV

- name: Build
run: |
. .github/workflows/scripts/common-utils.sh

ci-docker-run-gpu --name taichi-test \
registry.botmaster.tgr/taichi-build-manylinux2014-cuda:${{ env.CI_IMAGE_VERSION }} \
/home/dev/taichi/.github/workflows/scripts/build.py $NIGHTLY

- name: Archive Wheel Artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/*.whl
retention-days: 20

- name: Test
run: |
. .github/workflows/scripts/common-utils.sh

ci-docker-run-gpu --name taichi-test \
registry.botmaster.tgr/taichi-test-manylinux2014-cuda:${{ env.CI_IMAGE_VERSION }} \
/home/dev/taichi/.github/workflows/scripts/unix_test.sh
env:
PY: ${{ matrix.python }}
TI_WANTED_ARCHS: "cuda,cpu"

build_and_test_mac:
name: Build and Upload (macOS only)
needs: matrix_prep
Expand Down Expand Up @@ -337,7 +284,7 @@ jobs:

upload_to_pypi:
name: Upload release to PyPI
needs: [build_and_test_linux, build_and_test_manylinux2014, build_and_test_mac, build_and_test_m1, build_and_test_windows]
needs: [build_and_test_linux, build_and_test_mac, build_and_test_m1, build_and_test_windows]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
45 changes: 0 additions & 45 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,51 +267,6 @@ jobs:
path: taichi-release-tests/bad-compare/*
retention-days: 7

build_and_test_manylinux2014:
name: Build and Test (manylinux2014)
needs: check_files
runs-on: [self-hosted, cuda, cn, release]
env:
PY: "3.8"
PROJECT_NAME: taichi
TI_WANTED_ARCHS: "cuda,cpu"
TAICHI_CMAKE_ARGS: >-
-DTI_WITH_OPENGL:BOOL=OFF
-DTI_WITH_VULKAN:BOOL=OFF
-DTI_BUILD_TESTS:BOOL=ON

steps:
- name: Restart X Server
run: |
sudo systemctl restart xorg

- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'

- name: Prepare Environment
run: |
. .github/workflows/scripts/common-utils.sh
prepare-build-cache
echo CI_DOCKER_RUN_EXTRA_ARGS="-v $(pwd):/home/dev/taichi" >> $GITHUB_ENV

- name: Build
run: |
. .github/workflows/scripts/common-utils.sh

ci-docker-run-gpu --name taichi-test \
registry.botmaster.tgr/taichi-build-manylinux2014-cuda:${{ env.CI_IMAGE_VERSION }} \
/home/dev/taichi/.github/workflows/scripts/build.py

- name: Test
run: |
. .github/workflows/scripts/common-utils.sh

ci-docker-run-gpu --name taichi-test \
registry.botmaster.tgr/taichi-test-manylinux2014-cuda:${{ env.CI_IMAGE_VERSION }} \
/home/dev/taichi/.github/workflows/scripts/unix_test.sh

build_and_test_amdgpu_linux:
name: Build and Test (AMDGPU)
needs: check_files
Expand Down
Loading