use nvidia docker image #17
Workflow file for this run
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
# 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: | |
ubuntu_version: "20.04" | |
cuda_version: "12.3" | |
python_version: "3.10" | |
GPU: "v100" | |
CPU: "amd64" | |
frontier_tests: | |
name: Runs on newer hardware and latest CTK versions (A100, 12.4) | |
secrets: inherit | |
uses: ./.github/workflows/setup_build_test.yaml | |
with: | |
ubuntu_version: "22.04" | |
cuda_version: "12.4" | |
python_version: "3.10" | |
GPU: "a100" | |
CPU: "arm64" |