diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-03-17 15:36:17 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-03-17 15:36:17 -0700 |
commit | e4aec32e8935dd168ced6d6f1b797c7365580b70 (patch) | |
tree | fbdcc64c01345b3db22af2762354bce10390bdec /ci | |
parent | 17ca25869fd9e0ce0a4ec013a5dc39549ecaa6f7 (diff) | |
download | chef-e4aec32e8935dd168ced6d6f1b797c7365580b70.tar.gz |
set FORCE_FFI_YAJL on windows spec testslcg/force-ffi-windows
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/verify-chef.bat | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/verify-chef.bat b/ci/verify-chef.bat index 1f839c91a6..1f8be56ef1 100755 --- a/ci/verify-chef.bat +++ b/ci/verify-chef.bat @@ -55,6 +55,10 @@ IF NOT EXIST "Gemfile.lock" ( ) IF "%PIPELINE_NAME%" == "chef-fips" ( - set CHEF_FIPS=1 + set CHEF_FIPS=1 ) + +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 + call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/functional |