Skip to content

Commit 23a8442

Browse files
authored
Merge pull request puppetlabs#65 from puppetlabs/MODULES-8420
(MODULES-8420) Move to GEM_BOLT pattern
2 parents 91723d0 + 968f07f commit 23a8442

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rvm:
1818
- 2.5.1
1919
env:
2020
global:
21-
- BEAKER_PUPPET_COLLECTION=puppet6 PUPPET_GEM_VERSION="~> 6.0"
21+
- BEAKER_PUPPET_COLLECTION=puppet6 PUPPET_GEM_VERSION="~> 6.0" GEM_BOLT=true
2222
matrix:
2323
fast_finish: true
2424
include:

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ end
3131
group :system_tests do
3232
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]
3333
gem "puppet-module-win-system-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
34-
gem "bolt", '~> 1.4', require: false
34+
if ENV['GEM_BOLT']
35+
gem 'bolt', '~> 1.4', require: false
36+
end
3537
end
3638

3739
puppet_version = ENV['PUPPET_GEM_VERSION']

0 commit comments

Comments
 (0)