@@ -2,8 +2,12 @@ image: "ubuntu:noble"
2
2
3
3
variables :
4
4
DOCKER_DRIVER : overlay2
5
- FAST_MODE : " false" # when "true", only run linter on arm and unit/functional tests on linux64, skip everything else
6
5
CI_FAILFAST_TEST_LEAVE_DANGLING : " 1" # Gitlab CI does not care about dangling process and setting this variable avoids killing the CI script itself on error
6
+ # BUILD_TARGETS: '/^(arm-linux|linux64|linux64_fuzz|linux64_multiprocess|linux64_nowallet|linux64_sqlite|linux64_tsan|linux64_ubsan|mac|win64)$/'
7
+ # Set BUILD_TARGETS variable in Gitlab CI/CD settings using the template above excluding the build targets you don't need.
8
+ # For example, the old FAST_MODE would be '/^(arm-linux|linux64)$/'.
9
+ # If BUILD_TARGETS is not set or it's an empty string then no filtering is applied.
10
+ # NOTE: "Value" MUST be wrapped in '' i.e. it should be '/reg_exp/' ('' included) and not /reg_exp/ (no '').
7
11
8
12
workflow :
9
13
rules :
@@ -38,13 +42,16 @@ builder-image:
38
42
.build-depends-template :
39
43
stage : build-depends
40
44
rules :
41
- - when : on_success
45
+ - if : ' $BUILD_TARGETS == null || $BUILD_TARGETS == "" || $BUILD_TARGET =~ $BUILD_TARGETS'
46
+ when : on_success
47
+ - when : never
42
48
needs :
43
49
- builder-image
44
50
image : $CI_REGISTRY_IMAGE:builder-$CI_COMMIT_REF_SLUG
45
51
before_script :
46
52
- |
47
53
echo BUILD_TARGET="${BUILD_TARGET}"
54
+ echo BUILD_TARGETS="${BUILD_TARGETS}"
48
55
source ./ci/dash/matrix.sh
49
56
echo HOST="${HOST}"
50
57
echo DEP_OPTS="${DEP_OPTS}"
@@ -72,10 +79,13 @@ builder-image:
72
79
.base-template :
73
80
image : $CI_REGISTRY_IMAGE:builder-$CI_COMMIT_REF_SLUG
74
81
rules :
75
- - when : on_success
82
+ - if : ' $BUILD_TARGETS == null || $BUILD_TARGETS == "" || $BUILD_TARGET =~ $BUILD_TARGETS'
83
+ when : on_success
84
+ - when : never
76
85
before_script :
77
86
- export CACHE_DIR=$CI_PROJECT_DIR/cache
78
87
- echo BUILD_TARGET=$BUILD_TARGET
88
+ - echo BUILD_TARGETS="${BUILD_TARGETS}"
79
89
- source ./ci/dash/matrix.sh
80
90
- echo HOST=${HOST}
81
91
- echo DEP_OPTS=${DEP_OPTS}
@@ -165,12 +175,6 @@ builder-image:
165
175
- testlogs
166
176
expire_in : 3 days
167
177
168
- .skip-in-fast-mode-template :
169
- rules :
170
- - if : ' $FAST_MODE == "true"'
171
- when : never
172
- - when : on_success
173
-
174
178
# ##
175
179
176
180
arm-linux-gnueabihf :
@@ -181,7 +185,6 @@ arm-linux-gnueabihf:
181
185
x86_64-w64-mingw32 :
182
186
extends :
183
187
- .build-depends-template
184
- - .skip-in-fast-mode-template
185
188
variables :
186
189
BUILD_TARGET : win64
187
190
@@ -193,21 +196,18 @@ x86_64-pc-linux-gnu:
193
196
x86_64-pc-linux-gnu_nowallet :
194
197
extends :
195
198
- .build-depends-template
196
- - .skip-in-fast-mode-template
197
199
variables :
198
200
BUILD_TARGET : linux64_nowallet
199
201
200
202
x86_64-pc-linux-gnu_multiprocess :
201
203
extends :
202
204
- .build-depends-template
203
- - .skip-in-fast-mode-template
204
205
variables :
205
206
BUILD_TARGET : linux64_multiprocess
206
207
207
208
x86_64-apple-darwin :
208
209
extends :
209
210
- .build-depends-template
210
- - .skip-in-fast-mode-template
211
211
variables :
212
212
BUILD_TARGET : mac
213
213
@@ -223,7 +223,6 @@ arm-linux-build:
223
223
win64-build :
224
224
extends :
225
225
- .build-template
226
- - .skip-in-fast-mode-template
227
226
needs :
228
227
- x86_64-w64-mingw32
229
228
variables :
@@ -239,7 +238,6 @@ linux64-build:
239
238
linux64_sqlite-build :
240
239
extends :
241
240
- .build-template
242
- - .skip-in-fast-mode-template
243
241
needs :
244
242
- x86_64-pc-linux-gnu
245
243
variables :
@@ -248,7 +246,6 @@ linux64_sqlite-build:
248
246
linux64_fuzz-build :
249
247
extends :
250
248
- .build-template
251
- - .skip-in-fast-mode-template
252
249
needs :
253
250
- x86_64-pc-linux-gnu
254
251
variables :
@@ -257,7 +254,6 @@ linux64_fuzz-build:
257
254
# linux64_asan-build:
258
255
# extends:
259
256
# - .build-template
260
- # - .skip-in-fast-mode-template
261
257
# needs:
262
258
# - x86_64-pc-linux-gnu
263
259
# variables:
@@ -266,7 +262,6 @@ linux64_fuzz-build:
266
262
linux64_tsan-build :
267
263
extends :
268
264
- .build-template
269
- - .skip-in-fast-mode-template
270
265
needs :
271
266
- x86_64-pc-linux-gnu_multiprocess
272
267
variables :
@@ -275,7 +270,6 @@ linux64_tsan-build:
275
270
linux64_ubsan-build :
276
271
extends :
277
272
- .build-template
278
- - .skip-in-fast-mode-template
279
273
needs :
280
274
- x86_64-pc-linux-gnu
281
275
variables :
@@ -284,7 +278,6 @@ linux64_ubsan-build:
284
278
linux64_nowallet-build :
285
279
extends :
286
280
- .build-template
287
- - .skip-in-fast-mode-template
288
281
needs :
289
282
- x86_64-pc-linux-gnu_nowallet
290
283
variables :
@@ -293,7 +286,6 @@ linux64_nowallet-build:
293
286
linux64_multiprocess-build :
294
287
extends :
295
288
- .build-template
296
- - .skip-in-fast-mode-template
297
289
needs :
298
290
- x86_64-pc-linux-gnu_multiprocess
299
291
variables :
@@ -302,7 +294,6 @@ linux64_multiprocess-build:
302
294
# linux64_valgrind-build:
303
295
# extends:
304
296
# - .build-template
305
- # - .skip-in-fast-mode-template
306
297
# needs:
307
298
# - x86_64-pc-linux-gnu
308
299
# variables:
@@ -311,7 +302,6 @@ linux64_multiprocess-build:
311
302
mac-build :
312
303
extends :
313
304
- .build-template
314
- - .skip-in-fast-mode-template
315
305
needs :
316
306
- x86_64-apple-darwin
317
307
variables :
@@ -329,7 +319,6 @@ linux64-test:
329
319
linux64_sqlite-test :
330
320
extends :
331
321
- .test-template
332
- - .skip-in-fast-mode-template
333
322
needs :
334
323
- linux64_sqlite-build
335
324
variables :
@@ -338,7 +327,6 @@ linux64_sqlite-test:
338
327
# linux64_asan-test:
339
328
# extends:
340
329
# - .test-template
341
- # - .skip-in-fast-mode-template
342
330
# needs:
343
331
# - linux64_asan-build
344
332
# variables:
@@ -347,7 +335,6 @@ linux64_sqlite-test:
347
335
linux64_tsan-test :
348
336
extends :
349
337
- .test-template
350
- - .skip-in-fast-mode-template
351
338
needs :
352
339
- linux64_tsan-build
353
340
variables :
@@ -356,7 +343,6 @@ linux64_tsan-test:
356
343
linux64_ubsan-test :
357
344
extends :
358
345
- .test-template
359
- - .skip-in-fast-mode-template
360
346
needs :
361
347
- linux64_ubsan-build
362
348
variables :
@@ -365,7 +351,6 @@ linux64_ubsan-test:
365
351
linux64_multiprocess-test :
366
352
extends :
367
353
- .test-template
368
- - .skip-in-fast-mode-template
369
354
needs :
370
355
- linux64_multiprocess-build
371
356
variables :
@@ -374,7 +359,6 @@ linux64_multiprocess-test:
374
359
linux64_nowallet-test :
375
360
extends :
376
361
- .test-template
377
- - .skip-in-fast-mode-template
378
362
needs :
379
363
- linux64_nowallet-build
380
364
variables :
@@ -383,7 +367,6 @@ linux64_nowallet-test:
383
367
# linux64_valgrind-test:
384
368
# extends:
385
369
# - .test-template
386
- # - .skip-in-fast-mode-template
387
370
# needs:
388
371
# - linux64_valgrind-build
389
372
# variables:
0 commit comments