Sha256: c8e2acfaa7050101a432f00bed9d6d2572151fc11a3fd4e22f872f0e5e1c2cd5

Contents?: true

Size: 724 Bytes

Versions: 6

Compression:

Stored size: 724 Bytes

Contents

#!/bin/bash -xe

BUNDLER_VERSION=1.0.18
GEMSET=ncs_config

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ncs_navigator_configuration-0.4.0 ci-exec.sh
ncs_navigator_configuration-0.3.2 ci-exec.sh
ncs_navigator_configuration-0.3.1 ci-exec.sh
ncs_navigator_configuration-0.3.0 ci-exec.sh
ncs_navigator_configuration-0.2.0 ci-exec.sh
ncs_navigator_configuration-0.1.0 ci-exec.sh