-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/v2.452.2-2' into main
- Loading branch information
Showing
15 changed files
with
146 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# cesi/scm | ||
FROM registry.cloudogu.com/official/java:11.0.20-1 | ||
FROM registry.cloudogu.com/official/java:11.0.24-1 | ||
|
||
LABEL NAME="official/jenkins" \ | ||
VERSION="2.452.2-1" \ | ||
VERSION="2.452.2-2" \ | ||
maintainer="[email protected]" | ||
|
||
# jenkins home configuration | ||
|
@@ -36,7 +36,7 @@ RUN set -o errexit \ | |
# install coreutils, ttf-dejavu, openssh and scm clients | ||
# coreutils and ttf-dejavu is required because of java.awt.headless problem: | ||
# - https://wiki.jenkins.io/display/JENKINS/Jenkins+got+java.awt.headless+problem | ||
&& apk add --no-cache coreutils ttf-dejavu openssh-client git subversion mercurial curl \ | ||
&& apk add --no-cache coreutils ttf-dejavu openssh-client git subversion mercurial curl gcompat \ | ||
&& apk add openjdk8="$ADDITIONAL_OPENJDK8_VERSION" \ | ||
# could use ADD but this one does not check Last-Modified header | ||
# see https://github.com/docker/docker/issues/8331 | ||
|
@@ -52,21 +52,15 @@ RUN set -o errexit \ | |
&& printf "[global]\nssl-authority-files=/var/lib/jenkins/ca-certificates.crt\n" > /etc/subversion/server \ | ||
# install glibc for alpine | ||
# make sure that jenkins is able to execute Oracle JDK, which can be installed over the global tool installer | ||
&& apk add --no-cache libstdc++ \ | ||
&& curl -Lo /tmp/glibc.apk "https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk" \ | ||
&& echo "${SHA256_GLIB_APK} */tmp/glibc.apk" |sha256sum -c - \ | ||
&& apk add --no-cache --allow-untrusted /tmp/glibc.apk \ | ||
&& curl -Lo /tmp/glibc-bin.apk "https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-bin-${GLIBC_VERSION}.apk" \ | ||
&& echo "${SHA256_GLIB_BIN_APK} */tmp/glibc-bin.apk" |sha256sum -c - \ | ||
&& apk add --no-cache --allow-untrusted /tmp/glibc-bin.apk \ | ||
&& curl -Lo /tmp/glibc-i18n.apk "https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-i18n-${GLIBC_VERSION}.apk" \ | ||
&& echo "${SHA256_GLIB_I18N_APK} */tmp/glibc-i18n.apk" |sha256sum -c - \ | ||
&& apk add --no-cache --allow-untrusted /tmp/glibc-i18n.apk \ | ||
# do not abort https://github.com/sgerrand/alpine-pkg-glibc/issues/5 | ||
&& (/usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 C.UTF-8 || true ) \ | ||
&& echo "export LANG=C.UTF-8" > /etc/profile.d/locale.sh \ | ||
&& /usr/glibc-compat/sbin/ldconfig /lib /usr/glibc-compat/lib \ | ||
# cleanup | ||
&& apk add --no-cache libstdc++ gcompat | ||
|
||
RUN (/usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 C.UTF-8 || true ) | ||
|
||
RUN set -o errexit \ | ||
&& set -o nounset \ | ||
&& set -o pipefail \ | ||
echo "export LANG=C.UTF-8" > /etc/profile.d/locale.sh \ | ||
# cleanup | ||
&& apk del curl \ | ||
&& rm -rf /tmp/* /var/cache/apk/* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!groovy | ||
@Library(['github.com/cloudogu/ces-build-lib@2.1.0', 'github.com/cloudogu/[email protected].0']) | ||
@Library(['github.com/cloudogu/ces-build-lib@2.2.1', 'github.com/cloudogu/[email protected].1']) | ||
import com.cloudogu.ces.cesbuildlib.* | ||
import com.cloudogu.ces.dogubuildlib.* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MAKEFILES_VERSION=9.0.3 | ||
MAKEFILES_VERSION=9.1.0 | ||
|
||
.DEFAULT_GOAL:=dogu-release | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.