summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2021-03-22 16:53:00 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2021-03-22 18:22:26 -0700
commitfe85775fb07e687e715c81e50316d2d357dd8ecd (patch)
tree2d3e4a78dfac8a094fa271298c5dd44aa2aa85c8
parentd7e3f64f7c7e960ad899a18e8c97d00721bb6ba1 (diff)
downloadchef-fe85775fb07e687e715c81e50316d2d357dd8ecd.tar.gz
bump the timeout up for gecode/depselector/berks installs
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rwxr-xr-xtasks/bin/run_external_test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/bin/run_external_test b/tasks/bin/run_external_test
index 36fde0ea4d..bb84fc255d 100755
--- a/tasks/bin/run_external_test
+++ b/tasks/bin/run_external_test
@@ -31,8 +31,8 @@ Dir.mktmpdir("chef-external-test") do |dir|
shell_out!("git clone #{git_url} #{dir}", live_stream: STDOUT)
Dir.chdir(dir) do
shell_out!("git checkout #{git_thing}", live_stream: STDOUT)
- Bundler.with_clean_env do
- shell_out!("bundle install", live_stream: STDOUT, env: env)
+ Bundler.with_unbundled_env do
+ shell_out!("bundle install --jobs=3 --retry=3", live_stream: STDOUT, env: env, timeout: 3600)
shell_out!("bundle exec #{ARGV.join(" ")}", live_stream: STDOUT, env: env)
end
end