Skip to content

Commit

Permalink
Switch from mixed case to uppercase env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed May 30, 2023
1 parent 4ba5029 commit b658c5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- unit
runs-on: ubuntu-latest
env:
BEAKER_setfile: debian10-64
BEAKER_SETFILE: debian10-64
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions lib/voxpupuli/acceptance/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

def configure_beaker(modules: :metadata, &block)
collection = ENV['BEAKER_PUPPET_COLLECTION'] || 'puppet'
ENV['BEAKER_debug'] ||= 'true'
ENV['BEAKER_DEBUG'] ||= 'true'
ENV['BEAKER_HYPERVISOR'] ||= 'docker'

# On Ruby 3 this doesn't appear to matter but on Ruby 2 beaker-hiera must be
Expand All @@ -13,7 +13,7 @@ def configure_beaker(modules: :metadata, &block)

require_relative 'fixtures' if modules == :fixtures

unless ENV['BEAKER_provision'] == 'no'
unless ENV['BEAKER_PROVISION'] == 'no'
block_on hosts, run_in_parallel: true do |host|
BeakerPuppetHelpers::InstallUtils.install_puppet_release_repo_on(host, collection)
package_name = BeakerPuppetHelpers::InstallUtils.puppet_package_name(host)
Expand Down

0 comments on commit b658c5d

Please sign in to comment.