Skip to content

Commit 0b8f3ad

Browse files
committed
Replace parallel:matrix with dedicated jobs
1 parent a92d161 commit 0b8f3ad

1 file changed

Lines changed: 25 additions & 8 deletions

File tree

.gitlab-ci.yml

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,36 @@ default:
55
tags:
66
- infra
77

8-
components:update:
8+
.components:update:
99
image: ruby:3.2.2
1010
stage: components
1111
resource_group: components:update
12-
parallel:
13-
matrix:
14-
- COMPONENT:
15-
- aquila
16-
- draco
17-
- sagittarius
18-
- taurus
1912
script:
2013
- bundle install
2114
- bin/pyxis components update $COMPONENT
2215
rules:
2316
- if: $UPDATE_COMPONENTS == "true"
17+
18+
components:update:aquila:
19+
extends:
20+
- .components:update
21+
variables:
22+
COMPONENT: aquila
23+
24+
components:update:draco:
25+
extends:
26+
- .components:update
27+
variables:
28+
COMPONENT: draco
29+
30+
components:update:sagittarius:
31+
extends:
32+
- .components:update
33+
variables:
34+
COMPONENT: sagittarius
35+
36+
components:update:taurus:
37+
extends:
38+
- .components:update
39+
variables:
40+
COMPONENT: taurus

0 commit comments

Comments
 (0)