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>2019-09-30 05:08:40 +0300
committerEvan Read <eread@gitlab.com>2019-09-30 05:08:40 +0300
commit58bc6746bd8a9fda65435747a4f7face0e24e813 (patch)
treef7f8c3aa439aee1bb760f02811997838c7bb976d /lib/task_helpers.rb
parent7149c067c9d4da986bd8020365d42c39b9e70f96 (diff)
Do not build gitlab-foss anymore
With the single codebase and the symlink hack, there's no reason to pull and build gitlab-foss anymore. This will save us time and money :smile:
Diffstat (limited to 'lib/task_helpers.rb')
-rw-r--r--lib/task_helpers.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/task_helpers.rb b/lib/task_helpers.rb
index 243d39a9..0cd13591 100644
--- a/lib/task_helpers.rb
+++ b/lib/task_helpers.rb
@@ -1,6 +1,6 @@
require 'yaml'
-PRODUCTS = %W[ce ee omnibus runner charts].freeze
+PRODUCTS = %W[ee omnibus runner charts].freeze
VERSION_FORMAT = /^(?<major>\d{1,2})\.(?<minor>\d{1,2})$/
def config
@@ -28,7 +28,7 @@ def retrieve_branch(slug)
# EE has different branch name scheme
when 'ee'
"#{version[:major]}-#{version[:minor]}-stable-ee"
- when 'ce', 'omnibus', 'runner'
+ when 'omnibus', 'runner'
"#{version[:major]}-#{version[:minor]}-stable"
# Charts don't use the same version scheme as GitLab, we need to
# deduct their version from the GitLab equivalent one.