aboutsummaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorGabriel Nagy <gabriel.nagy@puppet.com>2021-02-18 15:53:50 +0200
committerGabriel Nagy <gabriel.nagy@puppet.com>2021-02-18 16:05:20 +0200
commitbe4b336878f31a41296d82154d00ce92fb887f2f (patch)
treebd48190d7d7a81c45eafb1e47422e6cab268310c /Gemfile
parent248a515ac8ed1604462110e1d42962d2cad1356c (diff)
downloadpuppet-augeas_core-be4b336878f31a41296d82154d00ce92fb887f2f.tar.gz
puppet-augeas_core-be4b336878f31a41296d82154d00ce92fb887f2f.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--Gemfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 4ba2d59..73c8054 100644
--- a/Gemfile
+++ b/Gemfile
@@ -47,8 +47,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']