forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 82
164 lines (154 loc) · 6.47 KB
/
ci_nightly.yml
File metadata and controls
164 lines (154 loc) · 6.47 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# This CI workflow is triggered by:
# - scheduled run
#
# In the scheduled run, we run all targets from amdgpu_family_matrix.py and amdgpu_family_matrix_xfail.py
# As some of these builds are xfail, we allow errors to occur with `continue-on-error`, where the job will fail but the workflow is green
name: CI amd-staging Nightly
on:
# For AMD GPU families that expect_failure, we run builds and tests from this scheduled trigger
schedule:
- cron: "0 2 * * *" # Runs nightly at 2 AM UTC
workflow_dispatch:
inputs:
linux_amdgpu_families:
type: string
description: "Insert comma-separated list of Linux GPU families to build and test. ex: gfx94X, gfx1201X"
default: ""
linux_test_labels:
type: string
description: "If enabled, reduce test set on Linux to the list of labels prefixed with 'test:'"
default: ""
linux_use_prebuilt_artifacts:
type: boolean
description: "If enabled, the CI will pull Linux artifacts using artifact_run_id and only run tests"
windows_amdgpu_families:
type: string
description: "Insert comma-separated list of Windows GPU families to build and test. ex: gfx94X, gfx1201X"
default: ""
windows_test_labels:
type: string
description: "If enabled, reduce test set on Windows to the list of labels prefixed with 'test:'"
default: ""
windows_use_prebuilt_artifacts:
type: boolean
description: "If enabled, the CI will pull Windows artifacts using artifact_run_id and only run tests"
artifact_run_id:
type: string
description: "If provided, the tests will run on this artifact ID"
default: ""
workflow_call:
inputs:
linux_amdgpu_families:
type: string
description: "Insert comma-separated list of Linux GPU families to build and test. ex: gfx94X, gfx1201X"
default: ""
linux_test_labels:
type: string
description: "If enabled, reduce test set on Linux to the list of labels prefixed with 'test:'"
default: ""
linux_use_prebuilt_artifacts:
type: boolean
description: "If enabled, the CI will pull Linux artifacts using artifact_run_id and only run tests"
windows_amdgpu_families:
type: string
description: "Insert comma-separated list of Windows GPU families to build and test. ex: gfx94X, gfx1201X"
default: ""
windows_test_labels:
type: string
description: "If enabled, reduce test set on Windows to the list of labels prefixed with 'test:'"
default: ""
windows_use_prebuilt_artifacts:
type: boolean
description: "If enabled, the CI will pull Windows artifacts using artifact_run_id and only run tests"
artifact_run_id:
type: string
description: "If provided, the tests will run on this artifact ID"
default: ""
push:
branches:
- ADHOCBUILD
permissions:
contents: read
concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
# queued and in-progress runs for the same PR (presubmit) or commit
# (postsubmit). The workflow name is prepended to avoid conflicts between
# different workflows.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
jobs:
setup:
uses: ./.github/workflows/setup.yml
with:
build_variant: "release"
linux_build_and_test:
name: Linux::${{ matrix.variant.family }}::${{ matrix.variant.build_variant_label }}
needs: setup
if: >-
${{
needs.setup.outputs.linux_variants != '[]'
}}
strategy:
fail-fast: false
matrix:
variant: ${{ fromJSON(needs.setup.outputs.linux_variants) }}
uses: ./.github/workflows/ci_linux.yml
secrets: inherit
with:
amdgpu_families: ${{ matrix.variant.family }}
artifact_group: ${{ matrix.variant.artifact_group }}
test_runs_on: ${{ matrix.variant.test-runs-on }}
build_variant_label: ${{ matrix.variant.build_variant_label }}
build_variant_suffix: ${{ matrix.variant.build_variant_suffix }}
build_variant_cmake_preset: ${{ matrix.variant.build_variant_cmake_preset }}
test_labels: ${{ needs.setup.outputs.linux_test_labels }}
artifact_run_id: ${{ inputs.artifact_run_id }}
expect_failure: ${{ matrix.variant.expect_failure == true }}
use_prebuilt_artifacts: ${{ inputs.linux_use_prebuilt_artifacts == true && 'true' || 'false' }}
rocm_package_version: ${{ needs.setup.outputs.rocm_package_version }}
test_type: "full"
sanity_check_only_for_family: ${{ matrix.variant.sanity_check_only_for_family == true }}
permissions:
contents: read
id-token: write
windows_build_and_test:
name: Windows::${{ matrix.variant.family }}::${{ matrix.variant.build_variant_label }}
needs: setup
if: >-
${{
needs.setup.outputs.windows_variants != '[]'
}}
strategy:
fail-fast: false
matrix:
variant: ${{ fromJSON(needs.setup.outputs.windows_variants) }}
uses: ./.github/workflows/ci_windows.yml
with:
amdgpu_families: ${{ matrix.variant.family }}
artifact_group: ${{ matrix.variant.artifact_group }}
test_runs_on: ${{ matrix.variant.test-runs-on }}
build_variant_label: ${{ matrix.variant.build_variant_label }}
build_variant_suffix: ${{ matrix.variant.build_variant_suffix }}
build_variant_cmake_preset: ${{ matrix.variant.build_variant_cmake_preset }}
test_labels: ${{ needs.setup.outputs.windows_test_labels }}
artifact_run_id: ${{ inputs.artifact_run_id }}
expect_failure: ${{ matrix.variant.expect_failure == true }}
use_prebuilt_artifacts: ${{ inputs.windows_use_prebuilt_artifacts == true && 'true' || 'false' }}
rocm_package_version: ${{ needs.setup.outputs.rocm_package_version }}
test_type: "full"
sanity_check_only_for_family: ${{ matrix.variant.sanity_check_only_for_family == true }}
permissions:
contents: read
id-token: write
invoke-teams-notifier:
uses: ROCm/llvm-project/.github/workflows/teams_notifier.yml@amd-staging
if: always() && github.ref == 'refs/heads/amd-staging'
needs:
- windows_build_and_test
- linux_build_and_test
with:
JOB_NAME_TO_MATCH: "Linux::gfx94X-dcgpu::release / Build Artifacts / Build (xfail false)"
secrets: inherit
# build_python_packages:
# name: Build Python Packages
# uses: ./.github/workflows/build_python_packages.yml