-
Notifications
You must be signed in to change notification settings - Fork 10
212 lines (198 loc) · 6.17 KB
/
ci.yml
File metadata and controls
212 lines (198 loc) · 6.17 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
name: ci
on:
pull_request:
push:
branches:
- main
defaults:
run:
shell: bash
env:
dataset: ci_test
RCDB_CONNECTION: mysql://rcdb@clasdb.jlab.org/rcdb
CCDB_CONNECTION: mysql://clas12reader@clasdb.jlab.org/clas12
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# build
#############################################################################
build_timeline:
runs-on: ubuntu-latest
container:
image: codecr.jlab.org/hallb/clas12/container-forge/base:latest
options: --user root
steps:
- uses: actions/checkout@v6
- name: build
run: mvn install
- run: bin/qtl --version
- name: tar # to preserve any permissions
run: |
tar cavf build_timeline.tar.zst target
- uses: actions/upload-artifact@v7
with:
name: build_timeline
retention-days: 1
path: build_timeline.tar.zst
# download test data
#############################################################################
download_test_data:
runs-on: ubuntu-latest
# NOTE: using Ubuntu runner, rather than a `container-forge` image, since it's much faster for cache hits
strategy:
fail-fast: true
matrix:
type: [ detectors, physics ]
include:
- { type: detectors, schema: mon }
- { type: physics, schema: dst }
steps:
- uses: actions/cache@v5.0.4
id: cache
with:
key: validation_files_lfs_${{ matrix.type }}
path: validation_files.tar.zst
lookup-only: true
- name: download
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: |
GIT_LFS_SKIP_SMUDGE=1 git clone https://code.jlab.org/hallb/clas12/validation-data.git
cd validation-data
git lfs install --skip-smudge
git config lfs.fetchinclude "recon/${{ matrix.schema }}/validation_files.tar.zst"
git lfs pull
mv -v recon/${{ matrix.schema }}/validation_files.tar.zst $GITHUB_WORKSPACE/
# histogramming
#############################################################################
run_histogram:
needs:
- build_timeline
- download_test_data
runs-on: ubuntu-latest
container:
image: codecr.jlab.org/hallb/clas12/container-forge/base:latest
options: --user root
strategy:
fail-fast: false
matrix:
type: [ detectors, physics ]
steps:
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5.0.4
with:
key: validation_files_lfs_${{ matrix.type }}
path: validation_files.tar.zst
- name: download timeline build
uses: actions/download-artifact@v8
with:
name: build_timeline
- name: untar
run: ls *.tar.zst | xargs -I{} tar xavf {}
- run: tree
- name: qtl histogram
run: |
bin/qtl histogram \
-d ${{env.dataset}} \
--findhipo \
--series \
--focus-${{matrix.type}} \
validation_files
- run: tree slurm
- run: tree outfiles
- uses: actions/upload-artifact@v7
with:
name: slurm_${{ matrix.type }}
retention-days: 1
path: slurm
- uses: actions/upload-artifact@v7
with:
name: outfiles_histogram_${{ matrix.type }}
retention-days: 14
path: outfiles
test_swifjob:
needs:
- build_timeline
- download_test_data
runs-on: ubuntu-latest
container:
image: codecr.jlab.org/hallb/clas12/container-forge/base:latest
options: --user root
strategy:
fail-fast: false
matrix:
type: [ detectors, physics ]
steps:
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5.0.4
with:
key: validation_files_lfs_${{ matrix.type }}
path: validation_files.tar.zst
- name: download timeline build
uses: actions/download-artifact@v8
with:
name: build_timeline
- name: untar
run: ls *.tar.zst | xargs -I{} tar xavf {}
- run: tree
- name: test swifjob
run: |
single_rundir=$(find validation_files -mindepth 1 -maxdepth 1 -type d | head -n1)
echo "single_rundir = $single_rundir"
util/test-swifjob.sh $single_rundir runner --focus-${{ matrix.type }}
- run: tree runner
# timeline production
#############################################################################
run_analysis:
needs:
- run_histogram
runs-on: ubuntu-latest
container:
image: codecr.jlab.org/hallb/clas12/container-forge/base:latest
options: --user root
strategy:
fail-fast: false
matrix:
type: [ detectors, physics ]
include:
- { type: detectors, qtl_cmd: 'bin/qtl analysis', args: '-j 4 --skip-mya' }
- { type: physics, qtl_cmd: 'bin/qtl physics', args: '' }
steps:
- uses: actions/checkout@v6
- name: download outfiles
uses: actions/download-artifact@v8
with:
pattern: outfiles_*
merge-multiple: true
path: outfiles
- name: download timeline build
uses: actions/download-artifact@v8
with:
name: build_timeline
- name: untar
run: ls *.tar.zst | xargs -I{} tar xavf {}
- run: tree
- name: qtl analysis
run: |
${{matrix.qtl_cmd}} \
-d ${{env.dataset}} \
-p web \
--custom-pub \
${{matrix.args}}
- run: tree outfiles
- name: summarize
run: |
echo "# Output File Tree" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
tree web | xargs -0 -I{} echo {} >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- uses: actions/upload-artifact@v7
with:
name: outfiles_timelines_${{ matrix.type }}
retention-days: 14
path: outfiles
- uses: actions/upload-artifact@v7
with:
name: web_timelines_${{ matrix.type }}
retention-days: 14
path: web