Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
omnibus-heptapod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
heptapod
omnibus-heptapod
Commits
91a5295f
Commit
91a5295f
authored
4 years ago
by
Lin Jen-Shin
Browse files
Options
Downloads
Patches
Plain Diff
Use Gitlab::Version to pick the right source
parent
863f64c8
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.custom_sources.yml
+4
-0
4 additions, 0 deletions
.custom_sources.yml
lib/gitlab/build/info.rb
+7
-14
7 additions, 14 deletions
lib/gitlab/build/info.rb
spec/gitlab/build/info_spec.rb
+16
-0
16 additions, 0 deletions
spec/gitlab/build/info_spec.rb
with
27 additions
and
14 deletions
.custom_sources.yml
+
4
−
0
View file @
91a5295f
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
lib/gitlab/build/info.rb
+
7
−
14
View file @
91a5295f
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
spec/gitlab/build/info_spec.rb
+
16
−
0
View file @
91a5295f
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment