-
Notifications
You must be signed in to change notification settings - Fork 8
41 lines (37 loc) · 1.07 KB
/
pr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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