Sha256: b3f1ad233b39d45d40caef7ade41a6bf55bc7d564eb0b3cad2c9f195b743bb94

Contents?: true

Size: 651 Bytes

Versions: 22

Compression:

Stored size: 651 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 amq-protocol evented-spec; 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

22 entries across 22 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha1 bin/jenkins.sh
amq-client-0.5.0 bin/jenkins.sh