Skip to content
Snippets Groups Projects
Commit 91a5295f authored by Lin Jen-Shin's avatar Lin Jen-Shin
Browse files

Use Gitlab::Version to pick the right source

parent 863f64c8
No related merge requests found
......@@ -2,7 +2,9 @@
remote: "git@dev.gitlab.org:gitlab/gitlabhq.git"
alternative: "https://gitlab.com/gitlab-org/gitlab-foss.git"
security: "https://gitlab.com/gitlab-org/security/gitlab-foss.git"
# When running it on your local machine, use the SSH version to make it easier to authenticate:
#security: "git@gitlab.com:gitlab-org/security/gitlab-foss.git"
gitlab-rails-ee:
remote: "git@dev.gitlab.org:gitlab/gitlab-ee.git"
alternative: "https://gitlab.com/gitlab-org/gitlab.git"
security: "https://gitlab.com/gitlab-org/security/gitlab.git"
......@@ -5,7 +7,9 @@
gitlab-rails-ee:
remote: "git@dev.gitlab.org:gitlab/gitlab-ee.git"
alternative: "https://gitlab.com/gitlab-org/gitlab.git"
security: "https://gitlab.com/gitlab-org/security/gitlab.git"
# When running it on your local machine, use the SSH version to make it easier to authenticate:
#security: "git@gitlab.com:gitlab-org/security/gitlab.git"
gitlab-shell:
remote: "git@dev.gitlab.org:gitlab/gitlab-shell.git"
alternative: "https://gitlab.com/gitlab-org/gitlab-shell.git"
......
......@@ -99,9 +99,10 @@
end
def gitlab_rails_repo
# For normal builds, QA build happens from the gitlab repositories in dev.
# For triggered builds, they are not available and their gitlab.com mirrors
# have to be used.
# CE repo - In com it is gitlab-foss, in dev it is gitlabhq
# EE repo - In com it is gitlab, in dev it is gitlab-ee
gitlab_rails =
if package == "gitlab-ce"
"gitlab-rails"
else
"gitlab-rails-ee"
end
......@@ -107,13 +108,5 @@
if Gitlab::Version.alternative_channel?
domain = "https://gitlab.com/gitlab-org"
project = package == "gitlab-ce" ? "gitlab-foss" : "gitlab"
else
domain = "git@dev.gitlab.org:gitlab"
project = package == "gitlab-ce" ? "gitlabhq" : "gitlab-ee"
end
"#{domain}/#{project}.git"
Gitlab::Version.new(gitlab_rails).remote
end
def edition
......
......@@ -176,6 +176,22 @@
expect(described_class.gitlab_rails_repo).to eq("git@dev.gitlab.org:gitlab/gitlab-ee.git")
end
end
describe 'with security sources channel selected' do
before do
allow(::Gitlab::Version).to receive(:sources_channel).and_return('security')
allow(ENV).to receive(:[]).with('CI_JOB_TOKEN').and_return('CJT')
end
it 'returns security mirror for GitLab CE with attached credential' do
allow(Build::Info).to receive(:package).and_return("gitlab-ce")
expect(described_class.gitlab_rails_repo).to eq("https://gitlab-ci-token:CJT@gitlab.com/gitlab-org/security/gitlab-foss.git")
end
it 'returns security mirror for GitLab EE with attached credential' do
allow(Build::Info).to receive(:package).and_return("gitlab-ee")
expect(described_class.gitlab_rails_repo).to eq("https://gitlab-ci-token:CJT@gitlab.com/gitlab-org/security/gitlab.git")
end
end
end
describe '.major_minor_version_and_rails_ref' do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment