Skip to content

Commit 62f63e9

Browse files
make variable a string
1 parent a70aaf6 commit 62f63e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
SKIP_E2E_TESTS: false
2+
SKIP_E2E_TESTS: "false"
33

44
stages:
55
- pre

ci/input_files/build.yaml.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ publish-layer-{{ $environment_name }} ({{ $runtime.name }}-{{ $runtime.arch }}):
142142
tags: ["arch:amd64"]
143143
image: registry.ddbuild.io/images/docker:20.10-py3
144144
rules:
145-
- if: '$SKIP_E2E_TESTS == true'
145+
- if: '$SKIP_E2E_TESTS == "true"'
146146
when: never
147147
- if: '"{{ $environment_name }}" == "sandbox" && $REGION == "{{ $e2e_region }}" && "{{ $runtime.arch }}" == "amd64"'
148148
when: on_success
@@ -250,7 +250,7 @@ e2e-test:
250250
project: DataDog/serverless-e2e-tests
251251
strategy: depend
252252
rules:
253-
- if: '$SKIP_E2E_TESTS == true'
253+
- if: '$SKIP_E2E_TESTS == "true"'
254254
when: never
255255
- when: on_success
256256
variables:
@@ -274,7 +274,7 @@ e2e-test-status:
274274
tags: ["arch:amd64"]
275275
timeout: 3h
276276
rules:
277-
- if: '$SKIP_E2E_TESTS == true'
277+
- if: '$SKIP_E2E_TESTS == "true"'
278278
when: never
279279
- when: on_success
280280
script: |

0 commit comments

Comments
 (0)