Skip to content

Commit 416cb2f

Browse files
committed
Enable beaker on hcloud
1 parent 80902e8 commit 416cb2f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: bundle exec rake rubocop
3232
- name: Setup Test Matrix
3333
id: get-outputs
34-
run: bundle exec metadata2gha --use-fqdn --pidfile-workaround false
34+
run: bundle exec metadata2gha --domain ${{ github.run_attempt }}-${{ github.run_id }}-${{ github.sha }}.example.com --pidfile-workaround false
3535

3636
unit:
3737
needs: setup_matrix
@@ -77,6 +77,8 @@ jobs:
7777
env:
7878
BEAKER_PUPPET_COLLECTION: ${{ matrix.puppet.collection }}
7979
BEAKER_setfile: ${{ matrix.setfile.value }}
80+
BEAKER_HYPERVISOR: 'hcloud'
81+
HCLOUD_TOKEN: '${{ secrets.HCLOUD_TOKEN }}'
8082

8183
tests:
8284
needs:

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ group :test do
44
gem 'voxpupuli-test', '~> 5', :require => false
55
gem 'coveralls', :require => false
66
gem 'simplecov-console', :require => false
7-
gem 'puppet_metadata', '~> 1.0', :require => false
7+
gem 'puppet_metadata', git: 'https://github.com/bastelfreak/puppet_metadata', branch: 'foo2'
88
end
99

1010
group :development do
@@ -15,6 +15,7 @@ end
1515

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

2021
group :release do

0 commit comments

Comments
 (0)