beaker-hostgenerator 2.19.0 → 2.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +7 -2
- data/.github/workflows/test.yml +16 -17
- data/CHANGELOG.md +12 -0
- data/lib/beaker-hostgenerator/data.rb +1 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd72d76864e74cb20cf89d6426e6118f03c7ab512eb297cebe7405229a27d731
|
|
4
|
+
data.tar.gz: 7babdc689d85c982e0629f4d50a9c77e391bd0d3e13fa111acfb5f80c1ea83af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8ea4c42d4478e9f75ff03d73c043a4b6e8954de611c8348192ca7c88908d146830b597ec5e20b2a8265408215ff4b69681b042601cd568e5e92b2c98c645dc4
|
|
7
|
+
data.tar.gz: 1e65f7308ad87f0ffc0616c25dd4cef593bf5d19aa8756765a75cd0608e5baa74e6ba98f0edc84c67c5718f42cf150f4186673a46fb0f84a3ad8a1559a6fb512
|
|
@@ -11,10 +11,10 @@ jobs:
|
|
|
11
11
|
if: github.repository_owner == 'voxpupuli'
|
|
12
12
|
steps:
|
|
13
13
|
- uses: actions/checkout@v4
|
|
14
|
-
- name: Install Ruby 3.
|
|
14
|
+
- name: Install Ruby 3.4
|
|
15
15
|
uses: ruby/setup-ruby@v1
|
|
16
16
|
with:
|
|
17
|
-
ruby-version: '3.
|
|
17
|
+
ruby-version: '3.4'
|
|
18
18
|
env:
|
|
19
19
|
BUNDLE_WITHOUT: release
|
|
20
20
|
- name: Build gem
|
|
@@ -30,3 +30,8 @@ jobs:
|
|
|
30
30
|
chmod 0600 ~/.gem/credentials
|
|
31
31
|
- name: Publish gem to GitHub packages
|
|
32
32
|
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
|
33
|
+
- name: Wait for release to propagate
|
|
34
|
+
shell: bash
|
|
35
|
+
run: |
|
|
36
|
+
gem install rubygems-await
|
|
37
|
+
gem await *.gem
|
data/.github/workflows/test.yml
CHANGED
|
@@ -6,49 +6,48 @@ on:
|
|
|
6
6
|
branches:
|
|
7
7
|
- master
|
|
8
8
|
|
|
9
|
+
env:
|
|
10
|
+
BUNDLE_WITHOUT: release
|
|
11
|
+
|
|
9
12
|
jobs:
|
|
10
|
-
|
|
11
|
-
env:
|
|
12
|
-
BUNDLE_WITHOUT: release
|
|
13
|
+
rubocop_and_matrix:
|
|
13
14
|
runs-on: ubuntu-latest
|
|
15
|
+
outputs:
|
|
16
|
+
ruby: ${{ steps.ruby.outputs.versions }}
|
|
14
17
|
steps:
|
|
15
18
|
- uses: actions/checkout@v4
|
|
16
|
-
- name: Install Ruby
|
|
19
|
+
- name: Install Ruby 3.4
|
|
17
20
|
uses: ruby/setup-ruby@v1
|
|
18
21
|
with:
|
|
19
|
-
ruby-version:
|
|
22
|
+
ruby-version: '3.4'
|
|
20
23
|
bundler-cache: true
|
|
21
|
-
- name: Run
|
|
24
|
+
- name: Run RuboCop
|
|
22
25
|
run: bundle exec rake rubocop
|
|
26
|
+
- id: ruby
|
|
27
|
+
uses: voxpupuli/ruby-version@v1
|
|
23
28
|
|
|
24
29
|
test:
|
|
30
|
+
name: "Ruby ${{ matrix.ruby }}"
|
|
25
31
|
runs-on: ubuntu-latest
|
|
32
|
+
needs: rubocop_and_matrix
|
|
26
33
|
strategy:
|
|
27
34
|
fail-fast: false
|
|
28
35
|
matrix:
|
|
29
|
-
|
|
30
|
-
- ruby: "2.7"
|
|
31
|
-
- ruby: "3.0"
|
|
32
|
-
- ruby: "3.1"
|
|
33
|
-
- ruby: "3.2"
|
|
34
|
-
- ruby: "3.3"
|
|
35
|
-
env:
|
|
36
|
-
BUNDLE_WITHOUT: release:rubocop
|
|
36
|
+
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
|
37
37
|
steps:
|
|
38
38
|
- uses: actions/checkout@v4
|
|
39
|
-
- name:
|
|
39
|
+
- name: Setup ruby
|
|
40
40
|
uses: ruby/setup-ruby@v1
|
|
41
41
|
with:
|
|
42
42
|
ruby-version: ${{ matrix.ruby }}
|
|
43
43
|
bundler-cache: true
|
|
44
44
|
- name: Run tests
|
|
45
45
|
run: bundle exec rake
|
|
46
|
-
- name: Build gem
|
|
46
|
+
- name: Build the gem
|
|
47
47
|
run: gem build --strict --verbose *.gemspec
|
|
48
48
|
|
|
49
49
|
tests:
|
|
50
50
|
needs:
|
|
51
|
-
- rubocop
|
|
52
51
|
- test
|
|
53
52
|
runs-on: ubuntu-latest
|
|
54
53
|
name: Test suite
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.20.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.20.0) (2025-01-30)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.19.0...2.20.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- \(PA-6776\): Add osx-15-x86\_64 support. [\#397](https://github.com/voxpupuli/beaker-hostgenerator/pull/397) ([span786](https://github.com/span786))
|
|
12
|
+
|
|
13
|
+
**Merged pull requests:**
|
|
14
|
+
|
|
15
|
+
- CI: Switch to voxpupuli/ruby-version@v1 & Run release job on Ruby 3.4 & Make release action synchronous [\#398](https://github.com/voxpupuli/beaker-hostgenerator/pull/398) ([bastelfreak](https://github.com/bastelfreak))
|
|
16
|
+
|
|
5
17
|
## [2.19.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.19.0) (2024-12-20)
|
|
6
18
|
|
|
7
19
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.18.0...2.19.0)
|
metadata
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-hostgenerator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Branan Purvine-Riley
|
|
8
8
|
- Wayne Warren
|
|
9
9
|
- Nate Wolfe
|
|
10
10
|
- Vox Pupuli
|
|
11
|
-
autorequire:
|
|
12
11
|
bindir: bin
|
|
13
12
|
cert_chain: []
|
|
14
|
-
date:
|
|
13
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
|
15
14
|
dependencies:
|
|
16
15
|
- !ruby/object:Gem::Dependency
|
|
17
16
|
name: fakefs
|
|
@@ -186,7 +185,6 @@ homepage: https://github.com/puppetlabs/beaker-hostgenerator
|
|
|
186
185
|
licenses:
|
|
187
186
|
- Apache-2.0
|
|
188
187
|
metadata: {}
|
|
189
|
-
post_install_message:
|
|
190
188
|
rdoc_options: []
|
|
191
189
|
require_paths:
|
|
192
190
|
- lib
|
|
@@ -201,8 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
201
199
|
- !ruby/object:Gem::Version
|
|
202
200
|
version: '0'
|
|
203
201
|
requirements: []
|
|
204
|
-
rubygems_version: 3.
|
|
205
|
-
signing_key:
|
|
202
|
+
rubygems_version: 3.6.2
|
|
206
203
|
specification_version: 4
|
|
207
204
|
summary: Beaker Host Generator Utility
|
|
208
205
|
test_files: []
|