Merge "Update Ubuntu 16.04 images"
[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://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
19 curl -L get.rvm.io | bash -s stable
20 # Expected by RVM, seems required to make RVM functions (`rvm use`) available
21 # Silence absurdly verbose rvm output by temporally not echoing commands
22 set +x
23 # shellcheck disable=SC1090
24 source "$HOME/.rvm/scripts/rvm"
25 rvm install 2.4.0
26 set -x
27 ruby --version
28 # This has to be done as a login shell to get rvm fns
29 # https://rvm.io/support/faq#what-shell-login-means-bash-l
30 # http://superuser.com/questions/306530/run-remote-ssh-command-with-full-login-shell
31 bash -lc "rvm use 2.4.0 --default"
32 ruby --version
33
34 # Install gems dependencies of puppet-opendaylight via Bundler
35 gem install bundler
36 echo export PATH="\\$PATH:/usr/local/bin" >> "$HOME/.bashrc"
37 # RVM's loaded functions print lots of output at this step, silence them
38 set +x
39 pushd "$WORKSPACE/puppet"
40 set -x
41 bundle install
42 bundle update
43
44 # Execute set of tests passed as param from job
45 bundle exec rake "$TEST_SUITE"