diff options
author | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2016-02-29 11:51:57 -0500 |
---|---|---|
committer | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2016-04-25 12:02:08 -0400 |
commit | d5039e38977b9da431fcb52670576561d772aa27 (patch) | |
tree | f8ffb53004f05c1f80821b5ed9aaba3beedde92a /ci | |
parent | 32fbc8908cc41c218951d5e2c9413e7efc6df5f1 (diff) | |
download | chef-d5039e38977b9da431fcb52670576561d772aa27.tar.gz |
Run the intergration tests in FIPS mode
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/verify-chef.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh index bf72e03cc3..6c6c4606de 100755 --- a/ci/verify-chef.sh +++ b/ci/verify-chef.sh @@ -117,11 +117,5 @@ else exit 1 fi - unset CHEF_FIPS - if [ "$PIPELINE_NAME" = "chef-fips" ]; then - echo "Setting fips mode" - CHEF_FIPS=1 - export CHEF_FIPS - fi - sudo env BUNDLE_GEMFILE=/opt/$PROJECT_NAME/Gemfile BUNDLE_IGNORE_CONFIG=true BUNDLE_FROZEN=1 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 PATH=$PATH TERM=xterm bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional fi |