-
Notifications
You must be signed in to change notification settings - Fork 5
434 lines (412 loc) · 12.9 KB
/
ci.yml
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2023 Christopher Dilks
name: ci
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# BUILD ---------------------------------------------------------------------------
build_1:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
repo: [EDM4eic, irt, epic]
steps:
- uses: actions/checkout@v3
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh ${{matrix.repo}}
echo "[CI] BUILD REPOSITORY"
build.sh ${{matrix.repo}}
- name: tar_artifacts # workaround: tarball artifacts to preserve executable permissions
run: tar cvf artifacts.${{matrix.repo}}.tar prefix
- uses: actions/upload-artifact@v3
with:
name: build_1
retention-days: 1
path: artifacts.${{matrix.repo}}.tar
build_2:
needs:
- build_1
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
repo: [EICrecon, reconstruction_benchmarks]
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_1
- name: untar_artifacts
run: |
ls artifacts.*.tar | xargs -I_ tar xvf _
rm -v artifacts.*.tar
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh ${{matrix.repo}}
echo "[CI] BUILD REPOSITORY"
build.sh ${{matrix.repo}}
- name: tar_artifacts # workaround: tarball artifacts to preserve executable permissions
run: tar cvf artifacts.${{matrix.repo}}.tar prefix
- uses: actions/upload-artifact@v3
with:
name: build_2
retention-days: 1
path: artifacts.${{matrix.repo}}.tar
build_3:
needs:
- build_2
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_1
- name: untar_artifacts
run: |
ls artifacts.*.tar | xargs -I_ tar xvf _
rm -v artifacts.*.tar
- uses: actions/download-artifact@v3
with:
name: build_2
- name: untar_artifacts
run: |
ls artifacts.*.tar | xargs -I_ tar xvf _
rm -v artifacts.*.tar
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh EICrecon
echo "[CI] BUILD LOCAL CODE"
make
- name: tar_artifacts # workaround: tarball artifacts to preserve executable permissions
run: tar cvf build.tar prefix bin lib
- uses: actions/upload-artifact@v3
with:
name: build_3
retention-days: 1
path: build.tar
# PIPELINE: SIMULATION, RECONSTRUCTION, BENCHMARKS ---------------------------------
pipeline:
needs:
- build_3
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
id:
- fixed_p
- eta_scan
- p_scan_eta0
- p_scan_eta1
- p_scan_eta2
- p_scan_eta3
radiator: [aerogel, gas]
particle: [pi+, kaon+, proton]
include:
### default momentum for each radiator (for fixed momentum tests)
- { radiator: aerogel, momentum: 5.0 }
- { radiator: gas, momentum: 20.0 }
### fixed momentum tests
- { id: fixed_p, options: -t 1 -n 50 }
- { id: eta_scan, options: -t 6 -k 5 -n 30 }
### momentum scans at fixed pseudorapidities
- { id: p_scan_eta0, radiator: aerogel, options: -t 9 -k 5 -n 30 -b 1.6 }
- { id: p_scan_eta0, radiator: gas, options: -t 10 -k 5 -n 30 -b 1.6 }
- { id: p_scan_eta1, radiator: aerogel, options: -t 9 -k 5 -n 30 -b 2.0 }
- { id: p_scan_eta1, radiator: gas, options: -t 10 -k 5 -n 30 -b 2.0 }
- { id: p_scan_eta2, radiator: aerogel, options: -t 9 -k 5 -n 30 -b 2.7 }
- { id: p_scan_eta2, radiator: gas, options: -t 10 -k 5 -n 30 -b 2.7 }
- { id: p_scan_eta3, radiator: aerogel, options: -t 9 -k 5 -n 30 -b 3.5 }
- { id: p_scan_eta3, radiator: gas, options: -t 10 -k 5 -n 30 -b 3.5 }
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_3
- name: untar_artifacts
run: |
tar xvf build.tar
rm -v build.tar
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh reconstruction_benchmarks
echo "[CI] RUN SIMULATION:"
simulate.py ${{matrix.options}} -m ${{matrix.momentum}} -p ${{matrix.particle}}
# echo "[CI] EVENT DISPLAY SINGLES:"
# event_display d s out/sim.edm4hep.root n 0 0
# mv out/ev out/ev.singles
echo "[CI] EVENT DISPLAY INTEGRATED:"
event_display d s out/sim.edm4hep.root n
mv out/ev out/ev.all_events
echo "[CI] DRAW HITS:"
draw_hits d
echo "[CI] RECONSTRUCTION:"
recon.rb
echo "[CI] BENCHMARKS:"
benchmark.rb -b
- name: cull
run: |
rm -v out*/sim*.root
rm -v out*/rec*.root
- name: tree_artifacts
run: tree out
- name: rename_artifacts
run: |
mkdir -p pipeline/${{matrix.id}}/${{matrix.radiator}}/${{matrix.particle}}
mv -v out/* pipeline/${{matrix.id}}/${{matrix.radiator}}/${{matrix.particle}}/
- uses: actions/upload-artifact@v3
with:
name: pipeline
retention-days: 1
path: pipeline*/
# GEOMETRY ------------------------------------------------------------------------
geometry:
needs:
- build_3
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
include:
- { det: d, detector: DRICH }
- { det: p, detector: PFRICH }
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_3
- name: untar_artifacts
run: |
tar xvf build.tar
rm -v build.tar
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh none
echo "[CI] CREATE TGEO FILE:"
geometry.sh -${{matrix.det}} -o geo/${{matrix.detector}}_TGeo.root
echo "[CI] DUMP GEOMETRY CONSTANTS:"
search_compact_params.sh -e | grep ${{matrix.detector}} | tee geo/${{matrix.detector}}_constants.txt
- uses: actions/upload-artifact@v3
with:
name: geometry
retention-days: 1
path: geo*/
# EVENT VISUALIZATION -------------------------------------------------------------
### FIXME: not sure how to make these work on CI runners
### - locally:
### run `xvfb-run eic-shell` (to suppress graphics)
### call `exit | simulate.py -t1 -n1 -v -e svg`
###
# visual:
# needs:
# - build_3
# runs-on: ubuntu-latest
# strategy:
# fail-fast: true
# steps:
# - uses: actions/checkout@v3
# - uses: actions/download-artifact@v3
# with:
# name: build_3
# - name: untar_artifacts
# run: |
# tar xvf build.tar
# rm -v build.tar
# - uses: cvmfs-contrib/github-action-cvmfs@v3
# - uses: eic/run-cvmfs-osg-eic-shell@main
# with:
# platform-release: "jug_xl:nightly"
# setup: environ.sh
# run: |
# scripts/configure_CI.sh none
# echo "[CI] SET DEBUG MODE"
# scripts/set_optics_debug_mode.sh DRICH_debug_sector 1
# echo "[CI] REBUILD epic"
# build.sh epic
# echo "[CI] VISUALIZE:"
# exit | simulate.py -t1 -n1 -v -e pdf
# mv out out.visual
# - uses: actions/upload-artifact@v3
# with:
# name: visual
# retention-days: 1
# path: out.*/
# optics:
# needs:
# - build_3
# runs-on: ubuntu-latest
# strategy:
# fail-fast: true
# steps:
# - uses: actions/checkout@v3
# - uses: actions/download-artifact@v3
# with:
# name: build_3
# - name: untar_artifacts
# run: |
# tar xvf build.tar
# rm -v build.tar
# - uses: cvmfs-contrib/github-action-cvmfs@v3
# - uses: eic/run-cvmfs-osg-eic-shell@main
# with:
# platform-release: "jug_xl:nightly"
# setup: environ.sh
# run: |
# scripts/configure_CI.sh none
# echo "[CI] SET DEBUG MODE"
# scripts/set_optics_debug_mode.sh DRICH_debug_optics 1
# echo "[CI] REBUILD epic"
# build.sh epic
# echo "[CI] VISUALIZE:"
# exit | simulate.py -t12 -e pdf
# mv out out.optics
# - uses: actions/upload-artifact@v3
# with:
# name: optics
# retention-days: 1
# path: out.*/
# MISCELLANEOUS TESTS -------------------------------------------------------------
test_pixel_gaps:
needs:
- build_3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_3
- name: untar_artifacts
run: |
tar xvf build.tar
rm -v build.tar
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh none
echo "[CI] RUN SIMULATION:"
simulate.py -s -t4 -n500
echo "[CI] RUN RECONSTRUCTION:"
recon.rb -c config/recon_digi_only.yaml
echo "[CI] DRAW PIXEL HITS:"
test_pixel_gap_cuts n
- name: tree_artifacts
run: tree out
- name: rename_artifacts
run: mv -v out tests
- uses: actions/upload-artifact@v3
with:
name: tests
retention-days: 1
path: tests*/
test_track_propagation:
needs:
- build_3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_3
- name: untar_artifacts
run: |
tar xvf build.tar
rm -v build.tar
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
setup: environ.sh
run: |
scripts/configure_CI.sh none
echo "[CI] RUN SIMULATION:"
simulate.py -t4 -k10 -n1
echo "[CI] RUN RECONSTRUCTION:"
recon.rb
echo "[CI] DRAW PIXEL HITS:"
root -b -q scripts/test_tracks.C
- name: tree_artifacts
run: tree out
- name: rename_artifacts
run: mv -v out tests
- uses: actions/upload-artifact@v3
with:
name: tests
retention-days: 1
path: tests*/
# ARTIFACT COLLECTION -------------------------------------------------------------
collect:
if: ${{ always() }}
needs:
- pipeline
- geometry
# - visual
# - optics
- test_pixel_gaps
- test_track_propagation
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: pipeline
- uses: actions/download-artifact@v3
with:
name: geometry
# - uses: actions/download-artifact@v3
# with:
# name: visual
# - uses: actions/download-artifact@v3
# with:
# name: optics
- uses: actions/download-artifact@v3
with:
name: tests
- name: cull
run: |
find -name .keep | xargs rm -v
- uses: actions/upload-artifact@v3
with:
name: _RESULTS
retention-days: 14
path: |
pipeline*/
geo*/
tests*/