File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ variables:
7
7
8
8
stages :
9
9
- build
10
- # - test
10
+ - test
11
11
- deploy
12
12
13
13
include :
14
14
- local : /.gitlab_ci/_templates.yml
15
15
- local : /.gitlab_ci/build.yml
16
- # - local: /.gitlab_ci/test.yml
16
+ - local : /.gitlab_ci/test.yml
17
17
- local : /.gitlab_ci/deploy.yml
Original file line number Diff line number Diff line change 2
2
typing :
3
3
stage : test
4
4
variables :
5
- DOCKER_IMAGE_TAG_PREFIX : " test- "
5
+ DOCKER_IMAGE_NAME : $CI_PROJECT_NAME-test
6
6
rules :
7
7
# We run the pipeline only on merge requests or the `main` branch
8
8
- if : $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
@@ -13,7 +13,7 @@ typing:
13
13
lint :
14
14
stage : test
15
15
variables :
16
- DOCKER_IMAGE_TAG_PREFIX : " test- "
16
+ DOCKER_IMAGE_NAME : $CI_PROJECT_NAME-test
17
17
rules :
18
18
# We run the pipeline only on merge requests or the `main` branch
19
19
- if : $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
24
24
format :
25
25
stage : test
26
26
variables :
27
- DOCKER_IMAGE_TAG_PREFIX : " test- "
27
+ DOCKER_IMAGE_NAME : $CI_PROJECT_NAME-test
28
28
rules :
29
29
# We run the pipeline only on merge requests or the `main` branch
30
30
- if : $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
@@ -35,7 +35,7 @@ format:
35
35
tests :
36
36
stage : test
37
37
variables :
38
- DOCKER_IMAGE_TAG_PREFIX : " test- "
38
+ DOCKER_IMAGE_NAME : $CI_PROJECT_NAME-test
39
39
rules :
40
40
# We run the pipeline only on merge requests or the `main` branch
41
41
- if : $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
You can’t perform that action at this time.
0 commit comments