Re-enable other CI jobs

This commit is contained in:
Ashwin Srinath
2025-12-03 16:42:30 -05:00
parent 603a2df445
commit 1d33536ce1

View File

@@ -35,47 +35,46 @@ permissions:
pull-requests: read pull-requests: read
jobs: jobs:
# Temporarily disabled for faster iteration on Python wheels compute-matrix:
# compute-matrix: name: Compute matrix
# name: Compute matrix runs-on: ubuntu-latest
# runs-on: ubuntu-latest outputs:
# outputs: DEVCONTAINER_VERSION: ${{steps.set-outputs.outputs.DEVCONTAINER_VERSION}}
# DEVCONTAINER_VERSION: ${{steps.set-outputs.outputs.DEVCONTAINER_VERSION}} PER_CUDA_COMPILER_MATRIX: ${{steps.set-outputs.outputs.PER_CUDA_COMPILER_MATRIX}}
# PER_CUDA_COMPILER_MATRIX: ${{steps.set-outputs.outputs.PER_CUDA_COMPILER_MATRIX}} PER_CUDA_COMPILER_KEYS: ${{steps.set-outputs.outputs.PER_CUDA_COMPILER_KEYS}}
# PER_CUDA_COMPILER_KEYS: ${{steps.set-outputs.outputs.PER_CUDA_COMPILER_KEYS}} base_sha: ${{ steps.export-pr-info.outputs.base_sha }}
# base_sha: ${{ steps.export-pr-info.outputs.base_sha }} pr_number: ${{ steps.export-pr-info.outputs.pr_number }}
# pr_number: ${{ steps.export-pr-info.outputs.pr_number }} steps:
# steps: - name: Checkout repo
# - name: Checkout repo uses: actions/checkout@v4
# uses: actions/checkout@v4 - name: Lookup PR info
# - name: Lookup PR info id: get-pr-info
# id: get-pr-info uses: nv-gha-runners/get-pr-info@main
# uses: nv-gha-runners/get-pr-info@main - name: Export PR info
# - name: Export PR info id: export-pr-info
# id: export-pr-info run: |
# run: | echo "base_sha=${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.sha }}" | tee -a "${GITHUB_OUTPUT}"
# echo "base_sha=${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.sha }}" | tee -a "${GITHUB_OUTPUT}" echo "pr_number=${{ fromJSON(steps.get-pr-info.outputs.pr-info).number }}" | tee -a "${GITHUB_OUTPUT}"
# echo "pr_number=${{ fromJSON(steps.get-pr-info.outputs.pr-info).number }}" | tee -a "${GITHUB_OUTPUT}" - name: Compute matrix outputs
# - name: Compute matrix outputs id: set-outputs
# id: set-outputs run: |
# run: | .github/actions/compute-matrix/compute-matrix.sh ci/matrix.yaml pull_request
# .github/actions/compute-matrix/compute-matrix.sh ci/matrix.yaml pull_request
# nvbench: nvbench:
# name: NVBench CUDA${{ matrix.cuda_host_combination }} name: NVBench CUDA${{ matrix.cuda_host_combination }}
# permissions: permissions:
# id-token: write id-token: write
# contents: read contents: read
# needs: compute-matrix needs: compute-matrix
# uses: ./.github/workflows/dispatch-build-and-test.yml uses: ./.github/workflows/dispatch-build-and-test.yml
# strategy: strategy:
# fail-fast: false fail-fast: false
# matrix: matrix:
# cuda_host_combination: ${{ fromJSON(needs.compute-matrix.outputs.PER_CUDA_COMPILER_KEYS) }} cuda_host_combination: ${{ fromJSON(needs.compute-matrix.outputs.PER_CUDA_COMPILER_KEYS) }}
# with: with:
# project_name: "nvbench" project_name: "nvbench"
# per_cuda_compiler_matrix: ${{ toJSON(fromJSON(needs.compute-matrix.outputs.PER_CUDA_COMPILER_MATRIX)[ matrix.cuda_host_combination ]) }} per_cuda_compiler_matrix: ${{ toJSON(fromJSON(needs.compute-matrix.outputs.PER_CUDA_COMPILER_MATRIX)[ matrix.cuda_host_combination ]) }}
# devcontainer_version: ${{ needs.compute-matrix.outputs.DEVCONTAINER_VERSION }} devcontainer_version: ${{ needs.compute-matrix.outputs.DEVCONTAINER_VERSION }}
python-wheels: python-wheels:
name: Python Wheels name: Python Wheels
@@ -84,16 +83,16 @@ jobs:
contents: read contents: read
uses: ./.github/workflows/build-and-test-python-wheels.yml uses: ./.github/workflows/build-and-test-python-wheels.yml
# verify-devcontainers: verify-devcontainers:
# name: Verify Dev Containers name: Verify Dev Containers
# if: ${{ !contains(github.event.head_commit.message, '[skip-vdc]') }} if: ${{ !contains(github.event.head_commit.message, '[skip-vdc]') }}
# needs: compute-matrix needs: compute-matrix
# permissions: permissions:
# id-token: write id-token: write
# contents: read contents: read
# uses: ./.github/workflows/verify-devcontainers.yml uses: ./.github/workflows/verify-devcontainers.yml
# with: with:
# base_sha: ${{ needs.compute-matrix.outputs.base_sha }} base_sha: ${{ needs.compute-matrix.outputs.base_sha }}
# This job is the final job that runs after all other jobs and is used for branch protection status checks. # This job is the final job that runs after all other jobs and is used for branch protection status checks.
# See: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks # See: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks
@@ -103,9 +102,9 @@ jobs:
name: CI name: CI
if: ${{ always() }} # need to use always() instead of !cancelled() because skipped jobs count as success if: ${{ always() }} # need to use always() instead of !cancelled() because skipped jobs count as success
needs: needs:
# - nvbench - nvbench
- python-wheels - python-wheels
# - verify-devcontainers - verify-devcontainers
steps: steps:
- name: Check status of all precursor jobs - name: Check status of all precursor jobs
if: >- if: >-