Skip to content

Commit b5b69c4

Browse files
committed
ci(gitlab-ci): use CI_JOB_NAME instead of internal env vars
* seems like the undocumented `DOCKER_ENV_CI_JOB_NAME` has been removed or is no longer generated correctly
1 parent 5735cc2 commit b5b69c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ rubocop:
135135
policy: 'pull'
136136
before_script: *bundle_install
137137
script:
138-
# Alternative value to consider: `${CI_JOB_NAME}`
139-
- 'bin/kitchen verify "${DOCKER_ENV_CI_JOB_NAME}"'
138+
- 'echo "Starting test job: ${CI_JOB_NAME}"'
139+
- 'bin/kitchen verify "${CI_JOB_NAME}"'
140140

141141
###############################################################################
142142
# Define `test` template (`allow_failure: true`)

0 commit comments

Comments
 (0)