mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Remove danger-ruby-2.6.6 image in favor of danger
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com> Changelog: deprecated
This commit is contained in:
parent
ec6bf89cf6
commit
8ff1b1b830
2 changed files with 0 additions and 34 deletions
|
|
@ -18,9 +18,6 @@
|
|||
danger:
|
||||
extends: .build_and_deploy
|
||||
|
||||
danger-ruby-2.6.6:
|
||||
extends: .build_and_deploy
|
||||
|
||||
gitlab-charts-build-base-helm-3.7:
|
||||
extends: .build_and_deploy
|
||||
|
||||
|
|
|
|||
|
|
@ -1,31 +0,0 @@
|
|||
FROM ruby:2.6.6-buster
|
||||
MAINTAINER GitLab Quality Team
|
||||
|
||||
# Danger manipulates git diff output. When a unicode char is present in the diff, it chokes with
|
||||
# (Danger::DSLError) [!] Invalid `Dangerfile` file: invalid byte sequence in US-ASCII
|
||||
# eg. https://gitlab.com/gitlab-org/gitlab-foss/-/jobs/275286625
|
||||
ENV LC_ALL "C.UTF-8"
|
||||
|
||||
ENV NODE_VERSION=14.17.2
|
||||
ENV YARN_VERSION=1.22.17
|
||||
ENV GITLAB_GEM_VERSION=4.18.0
|
||||
ENV DANGER_GEM_VERSION=8.4.5
|
||||
ENV DANGER_GITLAB_GEM_VERSION=8.0.0
|
||||
|
||||
ADD /scripts/ /scripts/
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y git \
|
||||
&& /scripts/install-node ${NODE_VERSION} ${YARN_VERSION} \
|
||||
&& yarn global add alex@9 \
|
||||
&& yarn cache clean \
|
||||
&& apt-get autoremove -yq \
|
||||
&& apt-get clean -yqq \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& gem install gitlab --version ${GITLAB_GEM_VERSION} --no-document \
|
||||
&& gem install danger --version ${DANGER_GEM_VERSION} --no-document \
|
||||
&& gem install danger-gitlab --version ${DANGER_GITLAB_GEM_VERSION} --no-document \
|
||||
&& git version \
|
||||
&& echo "node version " $(node --version) \
|
||||
&& echo "yarn version " $(yarn --version) \
|
||||
&& echo "Danger version " $(danger --version)
|
||||
Loading…
Add table
Add a link
Reference in a new issue