summaryrefslogtreecommitdiff
path: root/build/scripts/ci-acceptance.sh
blob: d1b379ef864dda1b7049bcb240be8fa7147adba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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 'cp db config'
cp build/db/ci.configuration.yml build/db/configuration.yml

echo 'run tests'
export CI=true
bundle exec rake spec:acceptance --trace
#bundle exec rake ci --trace