diff options
author | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-02-18 15:53:50 +0200 |
---|---|---|
committer | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-02-18 16:20:59 +0200 |
commit | 854f8ca1247256dae41ee8eedbd4d069bf19759d (patch) | |
tree | 61960c447ccd64b6caeeb6dd031080cb278a5bef /Gemfile | |
parent | 9b8399def738d645db7b0756442dab2a23b305b5 (diff) | |
download | puppet-sshkeys_core-854f8ca1247256dae41ee8eedbd4d069bf19759d.tar.gz puppet-sshkeys_core-854f8ca1247256dae41ee8eedbd4d069bf19759d.tar.bz2 |
(MODULES-10945) Do not install PDK when running PR tests
Create a separate group in the Gemfile for pdk and puppet-blacksmith
which are only used for releasing. In the workflow, avoid installing the
release group.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -46,8 +46,11 @@ group :system_tests do gem "beaker-hostgenerator" gem "beaker-rspec" gem "beaker-puppet", *location_for(ENV['BEAKER_PUPPET_VERSION'] || '~> 1.0') - gem "pdk", '~> 1.18', platforms: [:ruby] +end + +group :release do gem "puppet-blacksmith", '~> 3.4', require: false + gem "pdk", platforms: [:ruby] end puppet_version = ENV['PUPPET_GEM_VERSION'] |