Remove gitlab-workhorse from custom_source.yml file for Omnibus builds

This commit is contained in:
Byron Boots 2023-03-21 21:09:43 +00:00 committed by DJ Mountney
parent 5bad82b95f
commit 6b52d7c619
2 changed files with 0 additions and 8 deletions

View File

@ -14,10 +14,6 @@ gitlab-shell:
remote: "git@dev.gitlab.org:gitlab/gitlab-shell.git"
alternative: "https://gitlab.com/gitlab-org/gitlab-shell.git"
security: "https://gitlab.com/gitlab-org/security/gitlab-shell.git"
gitlab-workhorse:
remote: "git@dev.gitlab.org:gitlab/gitlab-workhorse.git"
alternative: "https://gitlab.com/gitlab-org/gitlab-workhorse.git"
security: "https://gitlab.com/gitlab-org/security/gitlab-workhorse.git"
gitlab-pages:
remote: "git@dev.gitlab.org:gitlab/gitlab-pages.git"
alternative: "https://gitlab.com/gitlab-org/gitlab-pages.git"

View File

@ -3,7 +3,6 @@
main() {
gitlab_rails_ref=$1
gitlab_shell_ref=$2
gitlab_workhorse_ref=$3
gitaly_ref=$4
indexer_ref=$5
@ -13,7 +12,6 @@ main() {
gitlab_rails_repo=git@dev.gitlab.org:gitlab/gitlabhq.git
fi
gitlab_shell_repo=git@dev.gitlab.org:gitlab/gitlab-shell.git
gitlab_workhorse_repo=git@dev.gitlab.org:gitlab/gitlab-workhorse.git
gitaly_repo=git@dev.gitlab.org:gitlab/gitaly.git
indexer_repo=git@dev.gitlab.org:gitlab/gitlab-elasticsearch-indexer.git
@ -21,8 +19,6 @@ main() {
assert_non_empty gitlab_rails_ref_id
gitlab_shell_ref_id=$(check_remote_ref gitlab_shell)
assert_non_empty gitlab_shell_ref_id
gitlab_workhorse_ref_id=$(check_remote_ref gitlab_workhorse)
assert_non_empty gitlab_workhorse_ref_id
gitaly_ref_id=$(check_remote_ref gitaly)
assert_non_empty gitaly_ref_id