fix #202
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
# Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# Note: This name is referred to in the test job, so make sure any changes are sync'd up! | |
# Further this is referencing a run in the backport branch to fetch old bindings. | |
name: "CI" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- "pull-request/[0-9]+" | |
- "main" | |
jobs: | |
ci-vars: | |
runs-on: ubuntu-latest | |
outputs: | |
CUDA_BUILD_VER: ${{ steps.get-vars.outputs.cuda_build_ver }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Get CUDA build version | |
id: get-vars | |
run: | | |
cuda_build_ver=$(jq -r .cuda.build.version ci/versions.json) | |
echo "cuda_build_ver=$cuda_build_ver" >> $GITHUB_OUTPUT | |
build: | |
needs: | |
- ci-vars | |
strategy: | |
fail-fast: false | |
matrix: | |
host-platform: | |
- linux-64 | |
- linux-aarch64 | |
- win-64 | |
name: Build ${{ matrix.host-platform }}, CUDA ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }} | |
if: ${{ github.repository_owner == 'nvidia' }} | |
secrets: inherit | |
uses: ./.github/workflows/build-wheel.yml | |
with: | |
host-platform: ${{ matrix.host-platform }} | |
cuda-version: ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }} | |
test-linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
host-platform: | |
- linux-64 | |
- linux-aarch64 | |
name: Test ${{ matrix.host-platform }} | |
if: ${{ github.repository_owner == 'nvidia' }} | |
permissions: | |
contents: read # This is required for actions/checkout | |
needs: | |
- ci-vars | |
- build | |
secrets: inherit | |
uses: ./.github/workflows/test-wheel-linux.yml | |
with: | |
build-type: pull-request | |
host-platform: ${{ matrix.host-platform }} | |
build-ctk-ver: ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }} | |
test-windows: | |
strategy: | |
fail-fast: false | |
matrix: | |
host-platform: | |
- win-64 | |
name: Test ${{ matrix.host-platform }} | |
if: ${{ github.repository_owner == 'nvidia' }} | |
permissions: | |
contents: read # This is required for actions/checkout | |
needs: | |
- ci-vars | |
- build | |
secrets: inherit | |
uses: ./.github/workflows/test-wheel-windows.yml | |
with: | |
build-type: pull-request | |
host-platform: ${{ matrix.host-platform }} | |
build-ctk-ver: ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }} | |
doc: | |
name: Docs | |
if: ${{ github.repository_owner == 'nvidia' }} | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
needs: | |
- ci-vars | |
- build | |
secrets: inherit | |
uses: ./.github/workflows/build-docs.yml | |
with: | |
build-ctk-ver: ${{ needs.ci-vars.outputs.CUDA_BUILD_VER }} | |
checks: | |
name: Check job status | |
permissions: | |
checks: read | |
needs: | |
- build | |
- test-linux | |
- test-windows | |
- doc | |
secrets: inherit | |
uses: ./.github/workflows/status-check.yml |