beaker-hostgenerator 2.19.0 → 2.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +7 -2
- data/.github/workflows/test.yml +16 -17
- data/CHANGELOG.md +21 -0
- data/lib/beaker-hostgenerator/data.rb +12 -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: 32b58d58cded0c7290fd70ebce2003d00de28ae09454826381d4c23ae5d27997
|
4
|
+
data.tar.gz: d1fcf42efb3b9a6d10ef3d685345a085244e2082b0e51498612b3fdd51e0f013
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f8d340b9fb7d2800faa745e4a655611c241a4c8676e89618403b54b44b45e5c571804a9391eca5198526654cceca499486d64ff4299af0a0ee5270f34ebee59
|
7
|
+
data.tar.gz: '09766cdd3505f3b045695edcbc2804d0eb5f16d53f0bbcdc37616fa477a9d2754452ea1539afb938af0d5faf0a76215c050a1c26bb27efa371e84b3732c8147a'
|
@@ -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,27 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.21.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.21.0) (2025-02-13)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.20.0...2.21.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Add new platform for windows server 2025 [\#396](https://github.com/voxpupuli/beaker-hostgenerator/pull/396) ([shubhamperforce](https://github.com/shubhamperforce))
|
12
|
+
- Add support for amazonfips-2023 [\#395](https://github.com/voxpupuli/beaker-hostgenerator/pull/395) ([smahima27](https://github.com/smahima27))
|
13
|
+
|
14
|
+
## [2.20.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.20.0) (2025-01-30)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.19.0...2.20.0)
|
17
|
+
|
18
|
+
**Implemented enhancements:**
|
19
|
+
|
20
|
+
- \(PA-6776\): Add osx-15-x86\_64 support. [\#397](https://github.com/voxpupuli/beaker-hostgenerator/pull/397) ([span786](https://github.com/span786))
|
21
|
+
|
22
|
+
**Merged pull requests:**
|
23
|
+
|
24
|
+
- 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))
|
25
|
+
|
5
26
|
## [2.19.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.19.0) (2024-12-20)
|
6
27
|
|
7
28
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.18.0...2.19.0)
|
@@ -972,6 +972,16 @@ module BeakerHostGenerator
|
|
972
972
|
'template' => 'win-2019-core-x86_64',
|
973
973
|
},
|
974
974
|
},
|
975
|
+
'windows2025_ent-64' => {
|
976
|
+
general: {
|
977
|
+
'platform' => 'windows-2025-64',
|
978
|
+
'packaging_platform' => 'windows-2025-x64',
|
979
|
+
'ruby_arch' => 'x64',
|
980
|
+
},
|
981
|
+
vmpooler: {
|
982
|
+
'template' => 'win-2025-ent-x64',
|
983
|
+
},
|
984
|
+
},
|
975
985
|
'windows2022-64' => {
|
976
986
|
general: {
|
977
987
|
'platform' => 'windows-2022-64',
|
@@ -1197,6 +1207,7 @@ module BeakerHostGenerator
|
|
1197
1207
|
yield %w[amazon2-AARCH64 amazon-2-aarch64]
|
1198
1208
|
yield %w[amazon2023-64 amazon-2023-x86_64]
|
1199
1209
|
yield %w[amazon2023-AARCH64 amazon-2023-aarch64]
|
1210
|
+
yield %w[amazonfips2023-64 amazonfips-2023-x86_64]
|
1200
1211
|
|
1201
1212
|
# Oracle / OracleLinux
|
1202
1213
|
yield ['oracle6-32', 'el-6-i386']
|
@@ -1217,6 +1228,7 @@ module BeakerHostGenerator
|
|
1217
1228
|
yield %w[osx14-64 osx-14-x86_64]
|
1218
1229
|
yield %w[osx14-ARM64 osx-14-arm64]
|
1219
1230
|
yield %w[osx15-ARM64 osx-15-arm64]
|
1231
|
+
yield %w[osx15-64 osx-15-x86_64]
|
1220
1232
|
end
|
1221
1233
|
end
|
1222
1234
|
end
|
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.21.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-02-14 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: []
|