We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e832140 commit f92abb7Copy full SHA for f92abb7
1 file changed
.gitlab-ci.yml
@@ -202,8 +202,11 @@ cache:
202
203
.job_rules:
204
interruptible: true
205
+ # Rules are evaluated when the pipeline is created, and evaluated in order.
206
+ # When a match is found, no more rules are checked
207
rules:
- - changes:
208
+ - if: $CI_JOB_STAGE == "manual"
209
+ changes:
210
- conf/**/*
211
- .github/**/*
212
- Makefile*
@@ -213,8 +216,17 @@ cache:
213
216
- freeloader
214
217
- linux
215
218
- u-boot
- - if: $CI_JOB_STAGE == "manual"
219
when: manual
220
+ - changes:
221
+ - conf/**/*
222
+ - .github/**/*
223
+ - Makefile*
224
+ - .gitlab-ci.yml
225
+ - buildroot
226
+ - opensbi
227
+ - freeloader
228
+ - linux
229
+ - u-boot
230
tags:
231
- env::shell
232
- net::outside
0 commit comments