diff --git a/playbooks/prepare-node-integration.yaml b/playbooks/prepare-node-integration.yaml index 6ad292b29..c4116bcdd 100644 --- a/playbooks/prepare-node-integration.yaml +++ b/playbooks/prepare-node-integration.yaml @@ -36,7 +36,7 @@ shell: cmd: | ruby <&1 + gem install rake -n ./.bundled_gems/ --no-user-instal + gem install beaker-rspec --no-user-install + gem install puppetlabs_spec_helper --no-user-install + ./.bundled_gems/rake acceptance 2>&1 --no-user-install fi chdir: '{{ ansible_user_dir }}/workspace' executable: /bin/bash diff --git a/playbooks/run-lint-tests.yaml b/playbooks/run-lint-tests.yaml index 05799ac74..9befbea33 100644 --- a/playbooks/run-lint-tests.yaml +++ b/playbooks/run-lint-tests.yaml @@ -21,7 +21,7 @@ export GEM_HOME=`pwd`/.bundled_gems if [ -f Gemfile ]; then ruby <&1 fi else - gem install rake -n ./.bundled_gems/ --no-ri --no-rdoc - gem install puppet-lint -n ./.bundled_gems/ --no-ri --no-rdoc - gem install metadata-json-lint -n ./.bundled_gems/ --no-ri --no-rdoc - gem install puppetlabs_spec_helper -n ./.bundled_gems/ --no-ri --no-rdoc - gem install puppet -n ./.bundled_gems/ --no-ri --no-rdoc + gem install rake -n ./.bundled_gems/ --no-ri --no-rdoc --no-user-install + gem install puppet-lint -n ./.bundled_gems/ --no-ri --no-rdoc --no-user-install + gem install metadata-json-lint -n ./.bundled_gems/ --no-ri --no-rdoc --no-user-install + gem install puppetlabs_spec_helper -n ./.bundled_gems/ --no-ri --no-rdoc --no-user-install + gem install puppet -n ./.bundled_gems/ --no-ri --no-rdoc --no-user-install ./.bundled_gems/rake lint 2>&1 if [ -f metadata.json ]; then ./.bundled_gems/metadata-json-lint diff --git a/playbooks/run-syntax-tests.yaml b/playbooks/run-syntax-tests.yaml index 0bd8cad9e..507d40430 100644 --- a/playbooks/run-syntax-tests.yaml +++ b/playbooks/run-syntax-tests.yaml @@ -6,7 +6,7 @@ mkdir .bundled_gems export GEM_HOME=`pwd`/.bundled_gems ruby <