39b753a87dea6045b5ac694e3ea66ca066b07815
[releng/builder.git] / jjb / packaging / test-puppet.sh
1 #!/bin/bash
2
3 # Options:
4 #   -x: Echo commands
5 #   -e: Fail on errors
6 #   -o pipefail: Fail on errors in scripts this calls, give stacktrace
7 set -ex -o pipefail
8
9 # Adapted from puppet-opendaylight/Vagrantfile
10 # https://git.opendaylight.org/gerrit/gitweb?p=integration/packaging/puppet-opendaylight.git;a=blob;f=Vagrantfile
11
12 # Install system-wide dependencies
13 # TODO: Are all of these still needed?
14 sudo yum install -y ruby-devel gcc-c++ zlib-devel patch redhat-rpm-config make rubygems
15
16 # Install RVM to help build recent version of Ruby
17 # The ruby_dep gem requires >=2.2.5, 2.0.0 is the latest pre-packaged for CentOS
18 gpg2 --keyserver hkp://pool.sks-keyservers.net --recv-keys \
19   409B6B1796C275462A1703113804BB82D39DC0E3 \
20   7D2BAF1CF37B13E2069D6956105BD0E739499BDB
21 curl -L get.rvm.io | bash -s stable
22 # Expected by RVM, seems required to make RVM functions (`rvm use`) available
23 # Silence absurdly verbose rvm output by temporally not echoing commands
24 set +x
25 # shellcheck disable=SC1090
26 source "$HOME/.rvm/scripts/rvm"
27 rvm install 2.4.0
28 set -x
29 ruby --version
30 # This has to be done as a login shell to get rvm fns
31 # https://rvm.io/support/faq#what-shell-login-means-bash-l
32 # http://superuser.com/questions/306530/run-remote-ssh-command-with-full-login-shell
33 bash -lc "rvm use 2.4.0 --default"
34 ruby --version
35
36 # Install gems dependencies of puppet-opendaylight via Bundler
37 gem install bundler
38 echo export PATH="\\$PATH:/usr/local/bin" >> "$HOME/.bashrc"
39 # RVM's loaded functions print lots of output at this step, silence them
40 set +x
41 pushd "$WORKSPACE/packaging-puppet"
42 set -x
43 bundle install
44 bundle update
45
46 # Execute set of tests passed as param from job
47 bundle exec rake "$TEST_SUITE"