Skip to content

Commit 8e6bdc4

Browse files
authored
Merge pull request #570 from ciprianbadescu/maint/add_BEAKER_BOLT_VERSION_env_variable
(maint) set `BEAKER_BOLT_VERSION` in `task_acceptance` rake task
2 parents c2457e3 + e0f9b48 commit 8e6bdc4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/task_acceptance_tests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
GEM_BOLT: true
2020
BEAKER_debug: true
2121
BEAKER_set: docker/${{ matrix.os }}
22-
BEAKER_BOLT_VERSION: 3.0.0
2322

2423
runs-on: 'ubuntu-18.04'
2524
steps:

task_spec/Rakefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ PuppetLint.configuration.send('disable_single_quote_string_with_variables')
1010
PuppetLint.configuration.send('disable_only_variable_string')
1111
PuppetLint.configuration.ignore_paths = ['spec/**/*.pp', 'pkg/**/*.pp']
1212

13-
task task_acceptance: [:spec_prep, :beaker]
13+
task 'task_acceptance' do
14+
ENV['BEAKER_BOLT_VERSION'] = '3.0.0'
15+
Rake::Task['spec_prep'].invoke
16+
Rake::Task['beaker'].invoke
17+
end

0 commit comments

Comments
 (0)