diff options
-rwxr-xr-x | ci/verify-chef.bat | 2 | ||||
-rwxr-xr-x | ci/verify-chef.sh | 2 | ||||
-rw-r--r-- | version_policy.rb | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/ci/verify-chef.bat b/ci/verify-chef.bat index 5ea317d82c..7ba0817938 100755 --- a/ci/verify-chef.bat +++ b/ci/verify-chef.bat @@ -61,7 +61,7 @@ IF "%PIPELINE_NAME%" == "chef-fips" ( REM ; ffi-yajl must run in c-extension mode for perf, so force it so we don't accidentally fall back to ffi set FORCE_FFI_YAJL=ext +set BUNDLE_GEMFILE=C:\opscode\%PROJECT_NAME%\Gemfile set BUNDLE_IGNORE_CONFIG=true set BUNDLE_FROZEN=1 -set BUNDLE_WITHOUT=development:guard:maintenance:tools:integration:changelog:compat_testing:docgen:travis:aix:bsd:linux:mac_os_x:solaris call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/functional diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh index 70b62d06da..8118d2da33 100755 --- a/ci/verify-chef.sh +++ b/ci/verify-chef.sh @@ -125,5 +125,5 @@ else export CHEF_FIPS fi - sudo env BUNDLE_IGNORE_CONFIG=true BUNDLE_FROZEN=1 BUNDLE_WITHOUT=development:guard:maintenance:tools:integration:changelog:compat_testing:docgen:travis GIT_SSL_NO_VERIFY=true PATH=$PATH TERM=xterm CHEF_FIPS=$CHEF_FIPS bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional + sudo env BUNDLE_GEMFILE=/opt/$PROJECT_NAME/Gemfile BUNDLE_IGNORE_CONFIG=true BUNDLE_FROZEN=1 GIT_SSL_NO_VERIFY=true PATH=$PATH TERM=xterm CHEF_FIPS=$CHEF_FIPS bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional fi diff --git a/version_policy.rb b/version_policy.rb index e85f596fcb..40d5cfe3fe 100644 --- a/version_policy.rb +++ b/version_policy.rb @@ -100,4 +100,5 @@ INSTALL_WITHOUT_GROUPS = %w{ compat_testing docgen travis + style } |