ddb24d6a06
The --no-ri and --no-rdoc option is removed in later versions. Change-Id: I199e980fe13d4932e7d3f9f484ea3dc25e58f01c
20 lines
705 B
YAML
20 lines
705 B
YAML
- hosts: all
|
|
tasks:
|
|
- shell:
|
|
cmd: |
|
|
export PUPPET_GEM_VERSION='~> {{ puppet }}'
|
|
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}'
|
|
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3.0') then
|
|
cmd += ' -v 1.17.3'
|
|
end
|
|
system(cmd)
|
|
EOF
|
|
$GEM_BIN_DIR/bundle install --retry 3
|
|
$GEM_BIN_DIR/bundle exec rake syntax
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|