09128ebe39
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
19 lines
610 B
YAML
19 lines
610 B
YAML
- hosts: all
|
|
tasks:
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
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
|
|
./run_unit_tests.sh
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|