-
Notifications
You must be signed in to change notification settings - Fork 90
345 lines (334 loc) · 10.1 KB
/
daily_test.yml
File metadata and controls
345 lines (334 loc) · 10.1 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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
name: Daily Build & Test
on:
workflow_dispatch:
schedule:
- cron: '0 14 * * *'
jobs:
daily_build_asan_x86:
name: Asan Build X86
runs-on: ubuntu-22.04
container:
image: vsaglib/vsag:ci-x86
volumes:
- /opt:/useless
concurrency:
group: daily_build_x86
cancel-in-progress: true
steps:
- name: Free Disk Space
run: rm -rf /useless/hostedtoolcache
- uses: actions/checkout@v4
with:
ref: main
- name: Load Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
max-size: "2G"
save: false
key: build-${{ hashFiles('./CMakeLists.txt') }}-${{ hashFiles('./.circleci/fresh_ci_cache.commit') }}
- name: Make Asan
run: export VSAG_ENABLE_INTEL_MKL=ON CMAKE_GENERATOR="Ninja"; make asan COMPILE_JOBS=4
- name: Clean
run: find ./build -type f -name "*.o" -exec rm -f {} +
- name: Save Test
uses: actions/upload-artifact@v5
with:
path: ./build
name: test_x86-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_build_asan_aarch64:
name: Asan Build Aarch64
runs-on: ubuntu-22.04-arm
concurrency:
group: daily_build_aarch
cancel-in-progress: true
steps:
- name: Free Disk Space
run: rm -rf /opt/hostedtoolcache
- uses: actions/checkout@v4
with:
ref: main
- name: Prepare Env
run: sudo bash ./scripts/deps/install_deps_ubuntu.sh
- name: Load Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
max-size: "2G"
save: false
key: build-aarch-${{ hashFiles('./CMakeLists.txt') }}-${{ hashFiles('./.circleci/fresh_ci_cache.commit') }}
- name: Make Asan
run: export CMAKE_GENERATOR="Ninja"; make asan
- name: Clean
run: find ./build -type f -name "*.o" -exec rm -f {} +
- name: Save Test
uses: actions/upload-artifact@v5
with:
path: ./build/
name: test_aarch64-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_test_asan_x86:
name: Test X86
needs: daily_build_asan_x86
runs-on: ubuntu-22.04
concurrency:
group: daily_test_x86-${{ matrix.test_type }}
cancel-in-progress: true
strategy:
matrix:
test_type: [ unittests, functests ]
container:
image: vsaglib/vsag:ci-x86
volumes:
- /opt:/useless
steps:
- name: Free Disk Space
run: rm -rf /opt/hostedtoolcache
- uses: actions/checkout@v4
with:
ref: main
- name: Clean Env
run: rm -rf ./build
- name: Download Test
uses: actions/download-artifact@v5
with:
name: test_x86-${{ github.run_id }}
path: ./build
- name: Do Asan Test In ${{ matrix.test_type }}
run: |
echo leak:libomp.so > omp.supp
export LSAN_OPTIONS=suppressions=omp.supp
chmod +x ./build/tests/${{ matrix.test_type }}
./scripts/testing/test_parallel_by_name.sh ${{ matrix.test_type }} ~[pr]
- name: Upload Log
uses: actions/upload-artifact@v5
with:
path: ./log
name: log-x86-${{ matrix.test_type }}-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_test_asan_aarch64:
name: Test Aarch64
needs: daily_build_asan_aarch64
runs-on: ubuntu-22.04-arm
strategy:
matrix:
test_type: [ unittests, functests ]
concurrency:
group: daily_test_aarch64-${{ matrix.test_type }}
cancel-in-progress: true
steps:
- name: Free Disk Space
run: rm -rf /opt/hostedtoolcache
- uses: actions/checkout@v4
with:
ref: main
- name: Prepare Env
run: sudo bash ./scripts/deps/install_deps_ubuntu.sh
- name: Clean Build
run: rm -rf ./build
- name: Download Test
uses: actions/download-artifact@v5
with:
name: test_aarch64-${{ github.run_id }}
path: ./build
- name: Do Asan Test In ${{ matrix.test_type }}
run: |
echo leak:libomp.so > omp.supp
export LSAN_OPTIONS=suppressions=omp.supp
chmod +x ./build/tests/${{ matrix.test_type }}
./scripts/testing/test_parallel_by_name.sh ${{ matrix.test_type }} ~[pr]
- name: Upload Log
uses: actions/upload-artifact@v5
with:
path: ./log
name: log-aarch64-${{ matrix.test_type }}-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
asan_test_clean_up:
name: Clean Up
needs: [ daily_test_asan_x86, daily_test_asan_aarch64 ]
runs-on: ubuntu-22.04
steps:
- name: Create Empty File
run: touch /tmp/clean_up
- name: Overwrite Test Artifact X86
uses: actions/upload-artifact@v5
with:
path: /tmp/clean_up
name: test_x86-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
- name: Overwrite Test Artifact Aarch64
uses: actions/upload-artifact@v5
with:
path: /tmp/clean_up
name: test_aarch64-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_build_simd:
name: Asan Build Simd
runs-on: ubuntu-22.04
container:
image: vsaglib/vsag:ci-x86
volumes:
- /opt:/useless
strategy:
matrix:
simd_option: [
# "avx2;-DDISABLE_AVX512_FORCE=1",
"avx;-DDISABLE_AVX2_FORCE=1",
"sse;-DDISABLE_AVX_FORCE=1",
"generic;-DDISABLE_SSE_FORCE=1",
]
concurrency:
group: daily_build_simd-${{ matrix.simd_option }}
cancel-in-progress: true
steps:
- name: Free Disk Space
run: rm -rf /useless/hostedtoolcache
- uses: actions/checkout@v4
with:
ref: main
- name: Make Asan
run: |
export EXTRA_DEFINED=`echo "${{ matrix.simd_option }}" | awk -F';' '{print $2}'`
export EXTRA_KEY=`echo "${{ matrix.simd_option }}" | awk -F';' '{print $1}'`
echo ${EXTRA_DEFINED}
echo ${EXTRA_KEY}
echo "SIMD_KEY=${EXTRA_KEY}" >> $GITHUB_ENV
export VSAG_ENABLE_INTEL_MKL=ON CMAKE_GENERATOR="Ninja"; make asan
- name: Clean
run: find ./build -type f -name "*.o" -exec rm -f {} +
- name: Save Test
uses: actions/upload-artifact@v5
with:
path: ./build
name: daily_test_simd-${{ env.SIMD_KEY }}-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_test_asan_simd:
name: Unit Test Simd
needs: daily_build_simd
runs-on: ubuntu-22.04
strategy:
matrix:
test_type: [ unittests, functests ]
simd_key: [
# avx2,
avx,
sse,
generic
]
concurrency:
group: daily_test_simd-${{ matrix.simd_key }}-${{ matrix.test_type }}
cancel-in-progress: true
container:
image: vsaglib/vsag:ci-x86
volumes:
- /opt:/useless
steps:
- name: Free Disk Space
run: rm -rf /useless/hostedtoolcache
- uses: actions/checkout@v4
with:
ref: main
- name: Clean Env
run: rm -rf ./build
- name: Download Test
uses: actions/download-artifact@v5
with:
name: daily_test_simd-${{ matrix.simd_key }}-${{ github.run_id }}
path: ./build/
- name: Do Asan Test In ${{ matrix.test_type }}
run: |
echo leak:libomp.so > omp.supp
export LSAN_OPTIONS=suppressions=omp.supp
chmod +x ./build/tests/${{ matrix.test_type }}
./scripts/testing/test_parallel_by_name.sh ${{ matrix.test_type }} ~[pr]
daily_clean_up_simd:
name: Clean Up
needs: daily_test_asan_simd
runs-on: ubuntu-22.04
strategy:
matrix:
simd_key: [
# avx2,
avx,
sse,
generic
]
steps:
- name: Create Empty File
run: touch /tmp/clean_up
- name: Overwrite Test Artifact
uses: actions/upload-artifact@v5
with:
path: /tmp/clean_up
name: test-x86-${{ matrix.simd_key }}-${{ github.run_id }}
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_build_tsan:
name: Daily Build with TSAN
runs-on: ubuntu-22.04
concurrency:
group: daily_build_tsan_x86
cancel-in-progress: true
container:
image: vsaglib/vsag:ci-x86
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
ref: main
- name: Load Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
max-size: "2G"
save: false
key: build-tsan-${{ hashFiles('./CMakeLists.txt') }}-${{ hashFiles('./.circleci/fresh_ci_cache.commit') }}
- name: Make Tsan
run: export CMAKE_GENERATOR="Ninja"; make tsan
- name: Clean
run: find ./build -type f -name "*.o" -exec rm -f {} +
- name: Save Test
uses: actions/upload-artifact@v5
with:
path: ./build
name: test_x86-${{ github.run_id }}-tsan
compression-level: 1
retention-days: 3
overwrite: 'true'
daily_test_tsan:
name: Daily Run TSAN Tests
needs: daily_build_tsan
runs-on: ubuntu-22.04
concurrency:
group: daily_test_tsan_x86
cancel-in-progress: true
container:
image: vsaglib/vsag:ci-x86
steps:
- uses: actions/checkout@v4
- name: Clean Env
run: rm -rf ./build
- name: Download Test
uses: actions/download-artifact@v5
with:
name: test_x86-${{ github.run_id }}-tsan
path: ./build/
- name: Run TSAN tests
run: |
echo leak:libomp.so > omp.supp
export LSAN_OPTIONS=suppressions=omp.supp
chmod +x ./build/tests/functests
./build/tests/functests "[concurrent]~[pr]"