summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2020-03-06 15:08:47 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2020-03-13 12:47:55 +1000
commit7d2b4b5ffe8cdcfa043f674374375f190020cd13 (patch)
treef3d149a9019def954a220f56b793c60cdac7e1b6 /.gitlab-ci
parentbd8225286a39d5ffd5c7236d2585083f673cef06 (diff)
downloadlibevdev-7d2b4b5ffe8cdcfa043f674374375f190020cd13.tar.gz
gitlab CI: remove obsolete variable expansion
gitlab doesn't support double-nested variables so we can assume that these variables don't need further expansion Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/gitlab-ci.tmpl3
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab-ci/gitlab-ci.tmpl b/.gitlab-ci/gitlab-ci.tmpl
index 8ebb383..d8a58d7 100644
--- a/.gitlab-ci/gitlab-ci.tmpl
+++ b/.gitlab-ci/gitlab-ci.tmpl
@@ -127,8 +127,7 @@ check-commit:
# log in to the registry
- podman login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- # get the full container image name (FDO_DISTRIBUTION_VERSION still has indirections)
- - IMAGE=$(eval echo "$FDO_DISTRIBUTION_NAME/$FDO_DISTRIBUTION_VERSION:$FDO_DISTRIBUTION_TAG")
+ - IMAGE="$FDO_DISTRIBUTION_NAME/$FDO_DISTRIBUTION_VERSION:$FDO_DISTRIBUTION_TAG"
- |
# force rebuild if schedule, reuse otherwise