Sha256: 5afec92c00e079c9fe54a047753c5c393ce5d8a0295f4a087680433adcf588ea

Contents?: true

Size: 509 Bytes

Versions: 20

Compression:

Stored size: 509 Bytes

Contents

#!/bin/sh

printf "\n\nRUNNER SCRIPT: Running as `whoami`"
printf "\n\nRUNNER SCRIPT: Running in directory `pwd`"

printf "\n\nRUNNER SCRIPT: Environment Variables..."
printf "\n\n`printenv`"

printf "\n\nRUNNER SCRIPT: Installing Gems...\n"
source ~/.bash_profile
rbenv local 2.0.0-p353
bin/setup
errcode=$?

if [ "$errcode" != 0 ]
then
  printf "\n\nRUNNER SCRIPT: Gem installation failed!"
  exit $errcode
fi

printf "\n\nRUNNER SCRIPT: Running specs...\n"
VCR_RECORD=all bundle exec rake rspec-rerun:spec

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
adparlor-facebook-0.8.2 bin/gitlab_runner_specs.sh
adparlor-facebook-0.8.0 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.9 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.8 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.7 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.6 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.5 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.4 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.3 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.2 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.1 bin/gitlab_runner_specs.sh
adparlor-facebook-0.7.0 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.6 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.5 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.4 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.3 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.2 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.1 bin/gitlab_runner_specs.sh
adparlor-facebook-0.6.0 bin/gitlab_runner_specs.sh
adparlor-facebook-0.5.9 bin/gitlab_runner_specs.sh