From 68e9725d024ccef7b618f462dee5648ca288bdc0 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 15 Jan 2021 15:57:27 +0100 Subject: add 'docker' tag into GitLab CI runner to select a shared docker based runner --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.gitlab-ci.yml') 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 -- cgit v1.2.3 From 1c6eba08f2a1c8008b85a71bc2c5d0a9d5e50361 Mon Sep 17 00:00:00 2001 From: Thomas <> Date: Tue, 15 Jun 2021 12:30:30 +0200 Subject: fix some warning in maven build process and switch to another GitLab CI maven image --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 523230e3..9cecaf7f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,5 @@ -image: maven:latest +#image: maven:latest +image: maven:3.6.3-jdk-11 variables: LC_ALL: "en_US.UTF-8" -- cgit v1.2.3