Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2020-12-21 14:35:46 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2020-12-21 14:35:46 +0300
commit2af3dfcb00677bee198fb07f256dcc0034a91ef3 (patch)
treeb0ffa5c0be77bcc93f713057480f7afbf77291fd
parent42b205fb5487578dc3daa1cfcb6b46a5ef27a738 (diff)
Release cut 13.7
-rw-r--r--.gitlab-ci.yml8
-rw-r--r--Dockerfile.13.722
2 files changed, 26 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 07ab2922..47ef027c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,10 +24,10 @@ stages:
# Pick the remote branch, by default master (see the Rakefile for more info)
#
variables:
- BRANCH_EE: 'master'
- BRANCH_OMNIBUS: 'master'
- BRANCH_RUNNER: 'master'
- BRANCH_CHARTS: 'master'
+ BRANCH_EE: '13-7-stable-ee'
+ BRANCH_OMNIBUS: '13-7-stable'
+ BRANCH_RUNNER: '13-7-stable'
+ BRANCH_CHARTS: '4-7-stable'
BUNDLE_PATH__SYSTEM: 'false'
GIT_DEPTH: '20'
diff --git a/Dockerfile.13.7 b/Dockerfile.13.7
new file mode 100644
index 00000000..eb8e7da5
--- /dev/null
+++ b/Dockerfile.13.7
@@ -0,0 +1,22 @@
+#
+# Copy this Dockerfile to the root of each branch you want to create an archive
+#
+
+# Set to the version for this archive (must match the branch name)
+ARG VER=13.7
+
+# Replace the versions to march the stable branches of the upstream projects
+ARG BRANCH_EE=13-7-stable-ee
+ARG BRANCH_OMNIBUS=13-7-stable
+ARG BRANCH_RUNNER=13-7-stable
+ARG BRANCH_CHARTS=4-7-stable
+
+# This image comes from the Dockerfile.builder.onbuild file
+# https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.builder.onbuild
+# Build the website
+FROM registry.gitlab.com/gitlab-org/gitlab-docs:builder-onbuild AS builder
+
+# This image comes from the Dockerfile.nginx.onbuild file
+# https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.nginx.onbuild
+# Copy the generated HTML files to a smaller image
+FROM registry.gitlab.com/gitlab-org/gitlab-docs:nginx-onbuild