summaryrefslogtreecommitdiff
path: root/build/scripts/ci-integration.sh
blob: c2cf287f7ceb311fe9519829cf4fca20434824b6 (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:integration --trace