From 9bf024643fb45d7126b412f8d117e696d0297120 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Thu, 21 Jun 2018 12:04:43 -0500 Subject: [PATCH] Add a release-tools Dockerfile --- .gitlab-ci.yml | 14 ++++++++------ Dockerfile.release-tools | 8 ++++++++ 2 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 Dockerfile.release-tools diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 92c9c65..18e360d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -91,18 +91,19 @@ node-8.9-chrome-63.0-yarn-1.2 test: *test_custom # Used by https://gitlab.com/gitlab-org/distribution/gitlab-provisioner/ ruby-2.3-ansible-2.5.1-terraform-0.11 test: *test_custom -www-gitlab-com-2.4 test: *test_build gitlab-qa test: *test_build +omnibus-gitlab-bionic test: *test_build omnibus-gitlab-centos6 test: *test_build omnibus-gitlab-centos7 test: *test_build omnibus-gitlab-jessie test: *test_build -omnibus-gitlab-stretch test: *test_build omnibus-gitlab-opensuse42.3 test: *test_build +omnibus-gitlab-stretch test: *test_build omnibus-gitlab-trusty test: *test_build omnibus-gitlab-wheezy test: *test_build omnibus-gitlab-xenial test: *test_build -omnibus-gitlab-bionic test: *test_build +release-tools test: *test_build sitespeed-gitlab test: *test_build +www-gitlab-com-2.4 test: *test_build # Builds @@ -147,18 +148,19 @@ golang-1.10-git-2.17: *build_and_deploy_custom # Used by https://gitlab.com/gitlab-org/distribution/gitlab-provisioner/ ruby-2.3-ansible-2.5.1-terraform-0.11: *build_and_deploy_custom -www-gitlab-com-2.4: *build_and_deploy gitlab-qa: *build_and_deploy +omnibus-gitlab-bionic: *build_and_deploy omnibus-gitlab-centos6: *build_and_deploy omnibus-gitlab-centos7: *build_and_deploy omnibus-gitlab-jessie: *build_and_deploy -omnibus-gitlab-stretch: *build_and_deploy omnibus-gitlab-opensuse42.3: *build_and_deploy +omnibus-gitlab-stretch: *build_and_deploy omnibus-gitlab-trusty: *build_and_deploy omnibus-gitlab-wheezy: *build_and_deploy omnibus-gitlab-xenial: *build_and_deploy -omnibus-gitlab-bionic: *build_and_deploy +release-tools: *build_and_deploy sitespeed-gitlab: *build_and_deploy +www-gitlab-com-2.4: *build_and_deploy cache-google-chrome: stage: automation diff --git a/Dockerfile.release-tools b/Dockerfile.release-tools new file mode 100644 index 0000000..d136a45 --- /dev/null +++ b/Dockerfile.release-tools @@ -0,0 +1,8 @@ +FROM ruby:2.4-alpine + +RUN apk add --update build-base cmake git openssh-client + +# Set UTF-8 http://jaredmarkell.com/docker-and-locales/ +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8