diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2021-01-15 15:57:27 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2021-01-15 15:57:27 +0100 |
commit | 68e9725d024ccef7b618f462dee5648ca288bdc0 (patch) | |
tree | 2f9b13106b1dd61946b713e3fecca9df3bce30ba | |
parent | 56f9a12c467d9649a368ee7cc593880bd634380c (diff) | |
download | National_eIDAS_Gateway-68e9725d024ccef7b618f462dee5648ca288bdc0.tar.gz National_eIDAS_Gateway-68e9725d024ccef7b618f462dee5648ca288bdc0.tar.bz2 National_eIDAS_Gateway-68e9725d024ccef7b618f462dee5648ca288bdc0.zip |
add 'docker' tag into GitLab CI runner to select a shared docker based runner
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 364d19fb..523230e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,6 +29,8 @@ cache: assemble: stage: assemble + tags: + - docker except: - tags script: | @@ -47,6 +49,8 @@ assemble: buildDistributionPackage: stage: package + tags: + - docker except: - tags - /^feature/.*$/i @@ -66,6 +70,8 @@ buildDistributionPackage: release: stage: release image: registry.gitlab.com/gitlab-org/release-cli:latest + tags: + - docker needs: - job: buildDistributionPackage artifacts: true |