Sha256: e415087ce72fe71e007200bf270bcf46c9a8da18680749d1b961d6f9dee32da6

Contents?: true

Size: 535 Bytes

Versions: 133

Compression:

Stored size: 535 Bytes

Contents

#!/bin/bash -e

# custom vars
# RUBY = ruby-1.9.3-p125
# GEMSET = location-app-${GitHub pull request id|branch name}
# standard vars

if [ -z "$SKIP_RVM" ]; then
  [[ -s "/usr/local/rvm/scripts/rvm" ]] && . "/usr/local/rvm/scripts/rvm"
  RUBY=${RUBY:-ruby-2.1.2}
  GEMSET=${GEMSET:-LHC}
  rvm use ${RUBY}@${GEMSET} --create
  gem install bundler --no-rdoc --no-ri
fi

bundle install --local --quiet || bundle install --quiet
RAILS_ENV=test bundle exec rspec
bundle exec rspec non_rails_spec
rvm --force gemset delete ${RUBY}@${GEMSET}

Version data entries

133 entries across 133 versions & 1 rubygems

Version Path
lhc-15.2.1 script/ci/build.sh
lhc-15.2.0 script/ci/build.sh
lhc-15.1.3 script/ci/build.sh
lhc-15.1.2 script/ci/build.sh
lhc-15.1.1 script/ci/build.sh
lhc-15.1.0 script/ci/build.sh
lhc-16.0.0.pre.pro2162.2 script/ci/build.sh
lhc-16.0.0.pre.pro2162 script/ci/build.sh
lhc-15.0.1 script/ci/build.sh
lhc-15.0.0 script/ci/build.sh
lhc-14.0.0 script/ci/build.sh
lhc-13.4.0.pre.pro1766.1 script/ci/build.sh
lhc-13.2.0 script/ci/build.sh
lhc-13.1.0 script/ci/build.sh
lhc-13.0.0 script/ci/build.sh
lhc-12.3.0 script/ci/build.sh
lhc-12.2.1 script/ci/build.sh
lhc-12.2.0 script/ci/build.sh
lhc-12.1.3 script/ci/build.sh
lhc-12.1.2 script/ci/build.sh