Sha256: b9b097db6636677a506fe5153224164596ab3a15d821dc8dcfdbdd1e366c21d8

Contents?: true

Size: 649 Bytes

Versions: 4

Compression:

Stored size: 649 Bytes

Contents

#!/bin/bash

echo -e "\n\n==== Setup ===="
source /etc/profile
git fetch && git reset origin/master --hard

echo -e "\n\n==== Ruby 1.9.2 Head ===="
rvm use 1.9.2-head@ruby-amqp
gem install bundler --no-ri --no-rdoc
bundle install --path vendor/bundle/1.9.2 --without development; echo
# bundle update --without development; echo
bundle exec rspec spec
return_status=$?

echo -e "\n\n==== Ruby 1.8.7 ===="
rvm use 1.8.7@ruby-amqp
gem install bundler --no-ri --no-rdoc
bundle install --path vendor/bundle/1.8.7 --without development; echo
bundle update; echo
bundle exec rspec spec
return_status=$(expr $return_status + $?)

test $return_status -eq 0

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
amq-protocol-0.7.0.alpha2 bin/jenkins.sh
amq-protocol-0.7.0.alpha1 bin/jenkins.sh
amq-protocol-0.6.0.pre bin/jenkins.sh
amq-protocol-0.5.0 bin/jenkins.sh