merge main #15
Workflow file for this run
This file contains hidden or 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
| name: pr | |
| on: | |
| push: | |
| branches: | |
| - "pull-request/[0-9]+" | |
| # automatically cancel in-progress CI runs if a new commit is pushed to the same ref | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v3.0.1 | |
| build-wheel: | |
| uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06 | |
| needs: [checks] | |
| with: | |
| build_type: pull-request | |
| script: ci/build_wheel.sh | |
| # only need 1 build (pure Python): amd64, oldest-supported Python, latest-supported CUDA is fine | |
| matrix_filter: '[map(select(.ARCH == "amd64")) | min_by((.PY_VER | split(".") | map(tonumber)), (.CUDA_VER | split(".") | map(-tonumber)))]' | |
| package-name: rapids-cli | |
| package-type: python | |
| pure-wheel: true | |
| append-cuda-suffix: false | |
| wheel-tests: | |
| needs: [build-wheel] | |
| secrets: inherit | |
| uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.06 | |
| with: | |
| build_type: pull-request | |
| node_type: "gpu-l4-latest-1" | |
| arch: "amd64" | |
| container_image: "rapidsai/citestwheel:latest" | |
| run_script: ci/test_wheel.sh |