jam-cloud/ruby/build

22 lines
314 B
Plaintext
Raw Normal View History

2012-11-18 07:39:07 +00:00
#!/bin/bash
2012-11-18 08:11:15 +00:00
echo "updating dependencies"
2014-02-02 20:03:31 +00:00
bundle install --path vendor/bundle
if [ -z $SKIP_TESTS ]; then
echo "running rspec tests"
bundle exec rspec
2012-11-18 07:39:07 +00:00
if [ "$?" = "0" ]; then
2012-11-18 07:39:07 +00:00
echo "tests completed"
else
2012-11-18 07:39:07 +00:00
echo "tests failed."
exit 1
fi
else
echo "skipping tests"
2012-11-18 07:39:07 +00:00
fi
echo "build complete"