-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,117 +18,11 @@ env: | |
|
||
jobs: | ||
|
||
# group together all jobs that must pass for a PR to be merged | ||
# (for use by branch protections) | ||
pr-builder: | ||
needs: | ||
- pre-commit | ||
- conda-python-build | ||
- conda-python-tests-cpu | ||
- conda-python-tests-gpu | ||
- docs-build | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
|
||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pre-commit/[email protected] | ||
|
||
conda-python-build: | ||
needs: | ||
- pre-commit | ||
uses: ./.github/workflows/conda-python-build.yaml | ||
with: | ||
script: "ci/build_python.sh" | ||
secrets: inherit | ||
|
||
conda-python-tests-cpu: | ||
needs: | ||
- pre-commit | ||
- conda-python-build | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- ARCH: "amd64" | ||
CUDA_VER: "12.5.1" | ||
PY_VER: "3.11" | ||
runs-on: linux-${{ matrix.ARCH }}-cpu16 | ||
container: | ||
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}" | ||
steps: | ||
- name: install git-lfs | ||
run: | | ||
conda install --yes \ | ||
-c conda-forge \ | ||
git-lfs | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
lfs: true | ||
- name: download conda packages | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: legate-boost-conda-cuda${{ matrix.CUDA_VER }}-${{ matrix.ARCH }}-py${{ matrix.PY_VER }} | ||
path: ${{ env.RAPIDS_LOCAL_CONDA_CHANNEL }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
run-id: ${{ github.run_id }} | ||
- name: test | ||
run: | | ||
ci/test_python_cpu.sh | ||
conda-python-tests-gpu: | ||
needs: | ||
- pre-commit | ||
- conda-python-build | ||
strategy: | ||
fail-fast: false | ||
# As of the last time this was updated, legate / cunumeric packages were published for only: | ||
# | ||
# * architectures: amd64 only | ||
# * CUDA: >=12.2 | ||
# * Python: 3.10, 3.11, 3.12 | ||
# | ||
# Valid set of RAPIDS ci-conda image tags: https://hub.docker.com/r/rapidsai/ci-conda/tags | ||
matrix: | ||
include: | ||
- ARCH: "amd64" | ||
CUDA_VER: "12.5.1" | ||
PY_VER: "3.10" | ||
runs-on: linux-${{ matrix.ARCH }}-gpu-v100-latest-1 | ||
container: | ||
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}" | ||
env: | ||
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} | ||
steps: | ||
- name: install git-lfs | ||
run: | | ||
conda install --yes \ | ||
-c conda-forge \ | ||
git-lfs | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
lfs: true | ||
- name: download conda packages | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: legate-boost-conda-cuda${{ matrix.CUDA_VER }}-${{ matrix.ARCH }}-py${{ matrix.PY_VER }} | ||
path: ${{ env.RAPIDS_LOCAL_CONDA_CHANNEL }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
run-id: ${{ github.run_id }} | ||
- name: test | ||
run: | | ||
ci/test_python_gpu.sh | ||
docs-build: | ||
needs: | ||
- conda-python-build | ||
uses: ./.github/workflows/docs-build.yaml | ||
with: | ||
script: "ci/build_docs.sh" | ||
deploy: false | ||
deploy: ${{ github.event_name == 'tag' || inputs.deploy_docs == true }} | ||
secrets: inherit |