Skip to content

use a local reusable workflow #16

use a local reusable workflow

use a local reusable workflow #16

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: pr
on:
push:
branches:
- "pull-request/[0-9]+"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pr-builder:
needs:
- checks
- legacy_tests
- frontier_tests
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
checks:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
enable_check_generated_files: false
legacy_tests:
name: Runs on legacy hardware and older CTK versions (V100, 12.3)
secrets: inherit
uses: ./.github/workflows/setup_build_test.yaml
with:
cuda_version: 12.3
python_version: 3.10
frontier_tests:
name: Runs on newer hardware and latest CTK versions (A100, 12.4)
secrets: inherit
uses: ./.github/workflows/setup_build_test.yaml
with:
cuda_version: 12.4
python_version: 3.10