summaryrefslogtreecommitdiff
path: root/ci/jenkins_run_tests.sh
blob: 8139d24d8c392b04293e44199290f150233cdf98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

export PATH=/usr/local/bin:$PATH

# Chef 10 contains the client in the chef/ sub-directory
cd chef

ruby -v;
# remove the Gemfile.lock and try again if bundler fails.
# This should take care of Gemfile changes that result in "bad" bundles without forcing us to rebundle every time
bundle install --binstubs --path vendor/bundle || ( rm Gemfile.lock && bundle install --binstubs --path vendor/bundle )
bin/rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec;
mv test.xml ..