-
Notifications
You must be signed in to change notification settings - Fork 0
325 lines (288 loc) · 13.2 KB
/
ci-tests.yaml
File metadata and controls
325 lines (288 loc) · 13.2 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
---
# This workflow runs after a pull-request has been approved by a reviewer.
name: CI Tests
on:
pull_request:
types: [opened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
pre-commit:
# runs on github hosted runner
runs-on: ubuntu-24.04
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: pre-commit/action@v3.0.1
# Runs on the github hosted runner
# Iterates through all of the commits in the the PR and runs
# clang-format to make sure that nothing changes.
clang-format-check:
runs-on: ubuntu-24.04
if: github.event.pull_request.draft == false
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Need full history to get the merge base
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install clang-format
run: sudo apt-get install -y clang-format
- name: Get merge base commit
id: get-base-commit
run: |
echo "base_commit=$(git merge-base ${{ github.event.pull_request.base.sha }} HEAD)" >> $GITHUB_OUTPUT
- name: Run clang-format check
run: |
python util/run-git-clang-format.py --ci-pr-base-commit ${{ steps.get-base-commit.outputs.base_commit }}
if [ $? -ne 0 ]; then
echo "::error::Code formatting issues detected! Please run clang-format on your changes."
exit 1
fi
get-date:
# We use the date to label caches. A cache is a a "hit" if the date is the
# request binary and date are the same as what is stored in the cache.
# This essentially means the first job to run on a given day for a given
# binary will always be a "miss" and will have to build the binary then
# upload it as that day's binary to upload. While this isn't the most
# efficient way to do this, the alternative was to run take a hash of the
# `src` directory contents and use it as a hash. We found there to be bugs
# with the hash function where this task would timeout. This approach is
# simple, works, and still provides some level of caching.
runs-on: ubuntu-24.04
outputs:
date: ${{ steps.date.outputs.date }}
steps:
- name: Get the current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
unittests-all-fast-opt:
strategy:
matrix:
type: [fast, opt]
runs-on: [self-hosted, linux, x64]
if: github.event.pull_request.draft == false
container: ghcr.io/gem5/ubuntu-24.04_all-dependencies:latest
needs: [pre-commit] # only runs if pre-commit passes.
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: CI Unittests (${{ matrix.type }})
working-directory: ${{ github.workspace }}
run: scons --no-compress-debug build/ALL/unittests.${{ matrix.type }} -j $(nproc)
- run: echo "This job's status is ${{ job.status }}."
testlib-quick-matrix:
runs-on: ubuntu-24.04
if: github.event.pull_request.draft == false
# In order to make sure the environment is exactly the same, we run in
# the same container we use to build gem5 and run the testlib tests. This
container: ghcr.io/gem5/ubuntu-24.04_all-dependencies:latest
needs: [pre-commit]
steps:
- uses: actions/checkout@v4
- name: Get directories for testlib-quick
working-directory: ${{ github.workspace }}/tests
id: dir-matrix
run: |
unset PREV
echo "test-dirs-matrix=$(\
./main.py list gem5 \
--suites \
--exclude-tags gcn_gpu | \
grep "$SUITEUID:" | \
cut -d: -f2 | \
cut -d/ -f 2- | \
xargs dirname | \
sort -u | \
while read x; do \
if [ -z "${PREV}" ] || [ "$x" != "${PREV}/*" ]; then \
PREV=$x; \
echo $x; \
fi; \
done | \
jq -ncR '[inputs]'\
)" >>$GITHUB_OUTPUT
- name: Get the build targets for testlib-quick-gem5-builds
working-directory: ${{ github.workspace }}/tests
id: build-matrix
run: echo "build-matrix=$(./main.py list --build-targets --exclude-tags VEGA_X86 -q | jq -ncR '[inputs]')" >>$GITHUB_OUTPUT
outputs:
build-matrix: ${{ steps.build-matrix.outputs.build-matrix }}
test-dirs-matrix: ${{ steps.dir-matrix.outputs.test-dirs-matrix }}
clang-fast-compilation:
# gem5 binaries built in `quick-gem5-builds` always use GCC.
# Clang is more strict than GCC. This job checks that gem5 compiles
# with Clang. It compiles build/ALL/gem5.fast to maximize the change
# for compilation error to be exposed.
runs-on: [self-hosted, linux, x64]
if: github.event.pull_request.draft == false
container: ghcr.io/gem5/clang-version-19:latest
needs: [pre-commit]
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Clang Compilation
working-directory: ${{ github.workspace }}
run: scons build/ALL/gem5.fast -j $(nproc)
macos-compilation:
runs-on: macos-26
if: github.event.pull_request.draft == false
needs: [pre-commit, get-date]
strategy:
fail-fast: false
matrix:
type: [fast, opt]
steps:
- name: Checkout the gem5 repository
uses: actions/checkout@v4
- name: Install the gem5 dependencies
run: |
brew update
brew install \
scons \
python \
pkg-config \
protobuf \
grpc \
boost
- name: Restore macOS build/ALL cache
uses: actions/cache/restore@v4
with:
path: build/ALL
key: macos-all-gem5-${{ matrix.type }}-${{ needs.get-date.outputs.date }}
restore-keys: |
macos-all-gem5-${{ matrix.type }}
- name: Compile gem5.${{ matrix.type }}
working-directory: ${{ github.workspace }}
run: scons build/ALL/gem5.${{ matrix.type }} -j $(sysctl -n hw.ncpu)
timeout-minutes: 90
testlib-quick-gem5-builds:
runs-on: [self-hosted, linux, x64]
if: github.event.pull_request.draft == false
container: ghcr.io/gem5/ubuntu-24.04_all-dependencies:latest
needs: [pre-commit, testlib-quick-matrix, get-date]
strategy:
matrix:
build-target: ${{ fromJson(needs.testlib-quick-matrix.outputs.build-matrix) }}
steps:
- uses: actions/checkout@v4
- name: Cache build/ALL
uses: actions/cache/restore@v4
if: ${{ endsWith(matrix.build-target, 'build/ALL/gem5.opt') }}
with:
path: build/ALL
key: testlib-build-all-${{ needs.get-date.outputs.date }}
restore-keys: |
testlib-build-all
- name: Build gem5
run: scons --no-compress-debug ${{ matrix.build-target }} -j $(nproc)
- name: Sanitize build-target for artifact name
id: sanitize-build-target
if: success() || failure()
run: echo "sanitized-build-target=$(echo '${{ matrix.build-target }}' | sed 's/[\\|\.]/-/g' | sed 's/[\/|__w|gem5|build]//g')" >> $GITHUB_OUTPUT
# Upload the gem5 binary as an artifact.
# Note: the "achor.txt" file is a hack to make sure the paths are
# preserverd in the artifact. The upload-artifact action finds the
# closest common directory and uploads everything relative to that.
# E.g., if we upload "build/ARM/gem5.opt" and "build/RISCV/gem5.opt"
# Then upload-artifact will upload "ARM/gem5.opt" and "RISCV/gem5.opt",
# stripping the "build" directory. By adding the "anchor.txt" file, we
# ensure the "build" directory is preserved.
- run: echo "anchor" > anchor.txt
- uses: actions/upload-artifact@v4
with:
name: ci-tests-${{ github.run_number }}-testlib-quick-all-gem5-builds-${{ steps.sanitize-build-target.outputs.sanitized-build-target }}
path: |
build/*/gem5.*
anchor.txt
testlib-quick-execution:
name: quick-tests
runs-on: [self-hosted, linux, x64]
if: github.event.pull_request.draft == false
container: ghcr.io/gem5/ubuntu-24.04_all-dependencies:latest
needs: [pre-commit, testlib-quick-matrix, testlib-quick-gem5-builds]
timeout-minutes: 360 # 6 hours
strategy:
fail-fast: false
matrix:
test-dir: ${{ fromJson(needs.testlib-quick-matrix.outputs.test-dirs-matrix) }}
steps:
# Checkout the repository then download the gem5.opt artifact.
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
name: Download gem5 artifacts
with:
pattern: ci-tests-${{ github.run_number }}-testlib-quick-all-gem5-builds*
merge-multiple: true
# Check that the gem5.opt artifact exists and is executable.
- name: Chmod gem5.{opt,debug,fast} to be executable
run: |
find . -name "gem5.opt" -exec chmod u+x {} \;
find . -name "gem5.debug" -exec chmod u+x {} \;
find . -name "gem5.fast" -exec chmod u+x {} \;
# Run the testlib quick tests in the given directory.
- name: Run quick ${{ matrix.test-dir }} tests
id: run-tests
working-directory: ${{ github.workspace }}/tests
run: ./main.py run --skip-build --exclude-tags gcn_gpu ${{ matrix.test-dir }}
# Get the basename of the matrix.test-dir path (to name the artifact).
- name: Sanitize test-dir for artifact name
id: sanitize-test-dir
if: success() || failure()
run: echo "sanitized-test-dir=$(echo '${{ matrix.test-dir }}' | sed 's/\//-/g')" >> $GITHUB_OUTPUT
# Upload the tests/testing-results directory as an artifact.
- name: Upload results
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: ci-tests-run-${{ github.run_number }}-attempt-${{ github.run_attempt }}-testlib-quick-${{ steps.sanitize-test-dir.outputs.sanitized-test-dir
}}-status-${{ steps.run-tests.outcome }}-output
path: tests/testing-results
retention-days: 30
gpu-tests:
runs-on: [self-hosted, linux, x64]
container: ghcr.io/gem5/gcn-gpu:latest
timeout-minutes: 180
needs: [pre-commit, get-date]
steps:
- uses: actions/checkout@v4
# Obtain the cache if available.
- name: Cache build/VEGA_X86
uses: actions/cache/restore@v4
with:
path: build/VEGA_X86
key: testlib-build-vega-${{ needs.get-date.outputs.date }}
restore-keys: |
testlib-build-vega
# Run the GPU tests.
- name: Run Testlib GPU Tests
id: run-tests
working-directory: ${{ github.workspace }}/tests
run: ./main.py run -j$(nproc) -t$(nproc) --host gcn_gpu
# Upload the tests/testing-results directory as an artifact.
- name: Upload results
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: ci-tests-run-${{ github.run_number }}-attempt-${{ github.run_attempt }}-gpu-status-${{ steps.run-tests.outcome }}-output
path: tests/testing-results
ci-tests:
# It is 'testlib-quick' which needs to pass for the pull request to be
# merged. This job is a dummy job that depends on all the other jobs.
runs-on: ubuntu-24.04
needs:
- testlib-quick-execution
- clang-fast-compilation
- unittests-all-fast-opt
- macos-compilation
- pre-commit
- gpu-tests
steps:
- run: echo "This job's status is ${{ job.status }}."