BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
97f60b49
Commit
97f60b49
authored
Aug 08, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'gitaly-bundle-gemfile' into 'master'
Unset BUNDLE_GEMFILE when installing Gitaly See merge request !13378
parents
143b5293
56845280
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gitaly.rake
lib/tasks/gitlab/gitaly.rake
+1
-1
gitaly_rake_spec.rb
spec/tasks/gitlab/gitaly_rake_spec.rb
+1
-1
No files found.
lib/tasks/gitlab/gitaly.rake
View file @
97f60b49
...
...
@@ -21,7 +21,7 @@ namespace :gitlab do
create_gitaly_configuration
# In CI we run scripts/gitaly-test-build instead of this command
unless
ENV
[
'CI'
].
present?
Bundler
.
with_original_env
{
run_command!
(
%w[/usr/bin/env -u RUBYOPT]
+
[
command
])
}
Bundler
.
with_original_env
{
run_command!
(
%w[/usr/bin/env -u RUBYOPT
-u BUNDLE_GEMFILE
]
+
[
command
])
}
end
end
end
...
...
spec/tasks/gitlab/gitaly_rake_spec.rb
View file @
97f60b49
...
...
@@ -41,7 +41,7 @@ describe 'gitlab:gitaly namespace rake task' do
end
describe
'gmake/make'
do
let
(
:command_preamble
)
{
%w[/usr/bin/env -u RUBYOPT]
}
let
(
:command_preamble
)
{
%w[/usr/bin/env -u RUBYOPT
-u BUNDLE_GEMFILE
]
}
before
(
:all
)
do
@old_env_ci
=
ENV
.
delete
(
'CI'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment