c03f2eaf7a
The bundler library has been pinned to 2.2.11 but this is quite old. This attempts to remove that pin and use the latest version instead. Depends-on: https://review.opendev.org/c/openstack/puppet-openstack_spec_helper/+/900787 Change-Id: I1575f435a1248762602c376a2fafca16b0a7958d
30 lines
1.3 KiB
YAML
30 lines
1.3 KiB
YAML
- hosts: all
|
|
tasks:
|
|
- name: install ruby bundler and run it
|
|
shell:
|
|
cmd: |
|
|
if [ "{{ puppet_gem_version }}" != "latest" ]; then
|
|
export PUPPET_GEM_VERSION='~> {{ puppet_gem_version }}'
|
|
fi
|
|
if [ "{{ rspec_puppet_version }}" != "latest" ]; then
|
|
export RSPEC_PUPPET_VERSION='{{ rspec_puppet_version }}'
|
|
fi
|
|
# NOTE(aschultz): rspec-puppet 2.4+ has strict variables enabled
|
|
# which causes test failures. The problem is that the puppet modules
|
|
# have never worked with strict_variables = true due to backwards
|
|
# compatibility & import ordering. Since this has not been true,
|
|
# lets disable it in the unit testing for now. Perhaps some day
|
|
# we will be able to turn this back to true.
|
|
export STRICT_VARIABLES=no
|
|
mkdir .bundled_gems
|
|
export GEM_HOME=`pwd`/.bundled_gems
|
|
export GEM_BIN_DIR=$GEM_HOME/bin
|
|
ruby <<EOF
|
|
cmd = 'gem install bundler --no-document --verbose --no-user-install --bindir=${GEM_BIN_DIR}'
|
|
system(cmd)
|
|
EOF
|
|
$GEM_BIN_DIR/bundle install --retry 3
|
|
$GEM_BIN_DIR/bundle exec rake spec SPEC_OPTS='--format documentation'
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|