summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Chisamore <schisamo@getchef.com>2014-07-23 10:18:26 -0400
committerLamont Granquist <lamont@scriptkiddie.org>2014-07-23 07:36:57 -0700
commit966980286337d55154499b2e154a9adc3087a2bd (patch)
tree14033c437d05819b479a8272670dca7d9321cb81
parent019df159b8ac91ba7da7d98d5ab6e1acbfb0bc48 (diff)
downloadohai-966980286337d55154499b2e154a9adc3087a2bd.tar.gz
[ci] bundle install into system gems7.2.0
Git on Windows respects the MAX_PATH from the Win32 API. Since MAX_PATH is 260 characters and the path to the Jenkin’s workspace is fairly long, `bundle install --path=vendor/bundle` commands will fail if the `Gemfile` contains a `git` sources. Although `msysgit` is working on experimental long path support, there are still various bugs in the implementation: https://github.com/msysgit/git/pull/122
-rw-r--r--ci/jenkins_run_tests.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/jenkins_run_tests.bat b/ci/jenkins_run_tests.bat
index d87e1e72..48336da7 100644
--- a/ci/jenkins_run_tests.bat
+++ b/ci/jenkins_run_tests.bat
@@ -4,7 +4,7 @@ call bundle check
if %ERRORLEVEL% NEQ 0 (
call rm Gemfile.lock
- call bundle install --without docgen --path vendor/bundle
+ call bundle install --without docgen
)
bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec