Sha256: 3305d1c8fe98536d32bd97813720932533ee418638cbacfb06655746ec50f51e
Contents?: true
Size: 873 Bytes
Versions: 3
Compression:
Stored size: 873 Bytes
Contents
#!/bin/bash -xe BUNDLER_VERSION=1.0.18 GEMSET="sqtables" if [ -n "${ACTIVERECORD_VERSION}" ]; then GEMSET="${GEMSET}-${ACTIVERECORD_VERSION}" fi if [ -n "${CPK}" ]; then GEMSET="${GEMSET}-${CPK}" 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 --trace
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
schema_qualified_tables-1.1.1 | ci-exec.sh |
schema_qualified_tables-1.1.0 | ci-exec.sh |
schema_qualified_tables-1.0.1 | ci-exec.sh |