Skip to content

Commit f4eaf5a

Browse files
authored
fix(ci): skip more jobs in "FAST_MODE" (#5311)
## Issue being fixed or feature implemented CI should not be running that many jobs in "FAST_MODE" https://github.com/dashpay/dash/blob/develop/.gitlab-ci.yml#L5 ## What was done? assign `.skip-in-fast-mode-template` template to more jobs ## How Has This Been Tested? ran CI in my repo before: https://gitlab.com/UdjinM6/dash/-/pipelines/832175740 after: https://gitlab.com/UdjinM6/dash/-/pipelines/832176325 ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation **For repository code-owners and collaborators only** - [ ] I have assigned this pull request to a milestone
1 parent 4ab5b34 commit f4eaf5a

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.gitlab-ci.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,21 +245,27 @@ linux64-build:
245245
BUILD_TARGET: linux64
246246

247247
linux64_cxx20-build:
248-
extends: .build-template
248+
extends:
249+
- .build-template
250+
- .skip-in-fast-mode-template
249251
needs:
250252
- x86_64-pc-linux-gnu-debug
251253
variables:
252254
BUILD_TARGET: linux64_cxx20
253255

254256
linux64_sqlite-build:
255-
extends: .build-template
257+
extends:
258+
- .build-template
259+
- .skip-in-fast-mode-template
256260
needs:
257261
- x86_64-pc-linux-gnu-debug
258262
variables:
259263
BUILD_TARGET: linux64_sqlite
260264

261265
linux64_fuzz-build:
262-
extends: .build-template
266+
extends:
267+
- .build-template
268+
- .skip-in-fast-mode-template
263269
needs:
264270
- x86_64-pc-linux-gnu-debug
265271
variables:
@@ -320,7 +326,9 @@ linux64-test:
320326
BUILD_TARGET: linux64
321327

322328
linux64_sqlite-test:
323-
extends: .test-template
329+
extends:
330+
- .test-template
331+
- .skip-in-fast-mode-template
324332
needs:
325333
- linux64_sqlite-build
326334
variables:

0 commit comments

Comments
 (0)