-
Notifications
You must be signed in to change notification settings - Fork 70
96 lines (93 loc) · 3.46 KB
/
Copy pathtest.yaml
File metadata and controls
96 lines (93 loc) · 3.46 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: test
on:
workflow_dispatch:
inputs:
branch:
description: |
branch: git branch the workflow run targets.
Required even when 'sha' is provided because it is also used for organizing artifacts.
required: true
type: string
date:
description: "date: Date (YYYY-MM-DD) this run is for. Used to organize artifacts produced by nightly builds"
required: true
type: string
sha:
description: "sha: full git commit SHA to check out"
required: true
type: string
permissions: {}
jobs:
test-conda-nightly-env:
secrets: inherit # zizmor: ignore[secrets-inherit]
# We use a build workflow so that we get CPU jobs and high matrix coverage
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
with:
build_type: pull-request
script: "ci/test_conda_nightly_env.sh"
# just using the workflow to get the matrix, this isn't actually building anything we want to upload
upload-artifacts: false
permissions:
actions: read
contents: read
id-token: write
packages: read
pull-requests: read
stable-install-pip-test-matrix:
if: github.base_ref == 'main'
uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@main
with:
build_type: nightly
matrix_name: wheels-test
# Filtering out 13.3 jobs which won't have docker images for the 26.06 release
matrix_filter: map(select(.CUDA_VER != "13.3.0"))
permissions:
contents: read
test-stable-install-pip:
needs: stable-install-pip-test-matrix
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.stable-install-pip-test-matrix.outputs.matrix) }}
with:
build_type: pull-request
arch: "${{matrix.ARCH}}"
node_type: "gpu-${{ matrix.GPU }}-latest-1"
container_image: "rapidsai/citestwheel:26.06-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}"
script: |
./ci/stable_install/install_and_test_pip.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }}
permissions:
actions: read
contents: read
id-token: write
packages: read
pull-requests: read
stable-install-conda-test-matrix:
if: github.base_ref == 'main'
uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@main
with:
build_type: nightly
matrix_name: conda-python-tests
# Filtering out 13.3 jobs which won't have docker images for the 26.06 release
matrix_filter: map(select(.CUDA_VER != "13.3.0"))
permissions:
contents: read
test-stable-install-conda:
needs: stable-install-conda-test-matrix
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.stable-install-conda-test-matrix.outputs.matrix) }}
with:
build_type: pull-request
node_type: "gpu-${{ matrix.GPU }}-latest-1"
arch: "${{ matrix.ARCH }}"
container_image: "rapidsai/ci-conda:26.06-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}"
script: |
./ci/stable_install/install_and_test_conda.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }}
permissions:
actions: read
contents: read
id-token: write
packages: read
pull-requests: read