Skip to content

Commit 0365e53

Browse files
fix: update cache warmup stages and dependencies in configuration files
1 parent fe39092 commit 0365e53

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.base.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ stages:
2525
- analyze
2626
- deploy.feature
2727
- sync
28+
- cache
2829
- test
2930
- deploy.prod
31+
- cache.prod
3032
- test.prod
3133
- release
3234

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# EXT:typo3-warming
66
#
77
cache:feature:warmup:
8-
stage: test
8+
stage: cache
99
extends:
1010
- .ssh
1111
needs:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# EXT:typo3-warming
66
#
77
cache:prod:warmup:
8-
stage: test.prod
8+
stage: cache.prod
99
extends:
1010
- .ssh
1111
needs:

test/test-feature-codeception.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
test:feature:codeception:
88
stage: test
99
needs:
10-
- build:php
11-
- deploy:feature
10+
- cache:feature:warmup
1211
rules:
1312
- if: $CI_PIPELINE_SOURCE == "schedule"
1413
when: never

test/test-prod-codeception.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
test:prod:codeception:
88
stage: test.prod
99
needs:
10-
- build:php
11-
- deploy:prod
10+
- cache:prod:warmup
1211
rules:
1312
- if: $CI_PIPELINE_SOURCE == "schedule"
1413
when: never

0 commit comments

Comments
 (0)