summaryrefslogtreecommitdiff
path: root/build/scripts/ci-unit.sh
blob: 3f4cdc06f44baec4af482c537a0d6989b6d0432f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash -x
echo 'loading bashrc'
source ~/.bashrc

echo 'loading gemset'
rvm use ruby-2.0.0-p247@booty --create

echo 'bundle install'
bundle install

echo 'run tests'
export CI=true
bundle exec rake spec:unit --trace