blob: be9c6a882e4d790b635a1e2973a541e4e0a386bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
export PATH=/usr/local/bin:$PATH
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 --path vendor/bundle || ( rm Gemfile.lock && bundle install --path vendor/bundle )
bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec;
RSPEC_RETURNCODE=$?
# move the rspec results back into the jenkins working directory
mv test.xml ..
# exit with the result of running rspec
exit $RSPEC_RETURNCODE
|