Skip to content

Commit

Permalink
Enable beaker on hcloud
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Dec 12, 2022
1 parent 80902e8 commit 416cb2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: bundle exec rake rubocop
- name: Setup Test Matrix
id: get-outputs
run: bundle exec metadata2gha --use-fqdn --pidfile-workaround false
run: bundle exec metadata2gha --domain ${{ github.run_attempt }}-${{ github.run_id }}-${{ github.sha }}.example.com --pidfile-workaround false

unit:
needs: setup_matrix
Expand Down Expand Up @@ -77,6 +77,8 @@ jobs:
env:
BEAKER_PUPPET_COLLECTION: ${{ matrix.puppet.collection }}
BEAKER_setfile: ${{ matrix.setfile.value }}
BEAKER_HYPERVISOR: 'hcloud'
HCLOUD_TOKEN: '${{ secrets.HCLOUD_TOKEN }}'

tests:
needs:
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ group :test do
gem 'voxpupuli-test', '~> 5', :require => false
gem 'coveralls', :require => false
gem 'simplecov-console', :require => false
gem 'puppet_metadata', '~> 1.0', :require => false
gem 'puppet_metadata', git: 'https://github.com/bastelfreak/puppet_metadata', branch: 'foo2'
end

group :development do
Expand All @@ -15,6 +15,7 @@ end

group :system_tests do
gem 'voxpupuli-acceptance', '~> 1.0', :require => false
gem 'beaker-hcloud', require: false, git: 'https://github.com/oneiros/beaker-hcloud', branch: 'issue-10'
end

group :release do
Expand Down

0 comments on commit 416cb2f

Please sign in to comment.