puppet-openstack-integration/playbooks/run-unit-tests.yaml
Alex Schultz 09128ebe39 Pin puppet 5 to 5.5.6
See PUP-9270 and PUP-9271 for context.

http://lists.openstack.org/pipermail/openstack-dev/2018-October/136102.html

Change-Id: I10fc5e213713503cf24909c79adf979b6e948366
Related-Bug: #1799757
Related-Bug: #1799786
2018-10-26 12:55:19 -06:00

20 lines
780 B
YAML

- hosts: all
tasks:
- shell:
cmd: |
if [ "{{ puppet_gem_version }}" != "latest" ]; then
if [ "{{ puppet_gem_version }}" == "5.5" ]; then
# Pin to 5.5.6. See PUP-9270 and PUP-9271
export PUPPET_GEM_VERSION='{{ puppet_gem_version }}.6'
else
export PUPPET_GEM_VERSION='~> {{ puppet_gem_version }}.0'
fi
fi
mkdir .bundled_gems
export GEM_HOME=`pwd`/.bundled_gems
gem install bundler --no-rdoc --no-ri --verbose
$GEM_HOME/bin/bundle install --retry 3
$GEM_HOME/bin/bundle exec rake spec SPEC_OPTS='--format documentation'
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'