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:
authorRussell Dickenson <rdickenson@gitlab.com>2021-05-20 01:45:36 +0300
committerRussell Dickenson <rdickenson@gitlab.com>2021-05-20 01:45:36 +0300
commita558e2f68b9759dce2b31da4cef8138995b87419 (patch)
treec396103ae1991a3b29891a5d2c9f3fe88e67a1ea
parent3d541f7660a13b21b0d1e8f63eef4ba9765e707f (diff)
Release cut 13.12
-rw-r--r--.gitlab-ci.yml8
-rw-r--r--Dockerfile.13.1222
2 files changed, 26 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ff5253aa..dd643036 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,10 +28,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-12-stable-ee'
+ BRANCH_OMNIBUS: '13-12-stable'
+ BRANCH_RUNNER: '13-12-stable'
+ BRANCH_CHARTS: '4-12-stable'
BUNDLE_PATH__SYSTEM: 'false'
GIT_DEPTH: '20'
ALPINE_VERSION: '3.13'
diff --git a/Dockerfile.13.12 b/Dockerfile.13.12
new file mode 100644
index 00000000..f78244a1
--- /dev/null
+++ b/Dockerfile.13.12
@@ -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.12
+
+# Replace the versions to march the stable branches of the upstream projects
+ARG BRANCH_EE=13-12-stable-ee
+ARG BRANCH_OMNIBUS=13-12-stable
+ARG BRANCH_RUNNER=13-12-stable
+ARG BRANCH_CHARTS=4-12-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