forked from northwestern-fsm/bcdatabase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathci-exec.sh
More file actions
executable file
·47 lines (37 loc) · 823 Bytes
/
ci-exec.sh
File metadata and controls
executable file
·47 lines (37 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash -xe
BUNDLER_VERSION=1.1.rc
GEMSET="bcdatabase"
if [ -n "${ACTIVESUPPORT_VERSION}" ]; then
GEMSET="${GEMSET}-${ACTIVESUPPORT_VERSION}"
fi
if [ -z "$CI_RUBY" ]; then
echo "CI_RUBY must be set"
exit 1
fi
set +xe
echo "Initializing RVM"
source ~/.rvm/scripts/rvm
set -xe
# On the overnight build, reinstall all gems
if [ `date +%H` -lt 5 ]; then
set +xe
echo "Purging gemset to verify that all deps can still be installed"
rvm --force $CI_RUBY gemset delete $GEMSET
set -xe
fi
RVM_CONFIG="${CI_RUBY}@${GEMSET}"
set +xe
echo "Switching to ${RVM_CONFIG}"
rvm use $RVM_CONFIG
set -xe
which ruby
ruby -v
set +e
gem list -i bundler -v $BUNDLER_VERSION
if [ $? -ne 0 ]; then
set -e
gem install bundler -v $BUNDLER_VERSION
fi
set -e
bundle update
bundle exec rake ci:spec --trace