beaker-hostgenerator 2.18.0 → 2.20.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/beaker-hostgenerator.gemspec +3 -3
- data/lib/beaker-hostgenerator/data.rb +12 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +15 -12
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,27 @@
|
|
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
|
+
|
17
|
+
## [2.19.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.19.0) (2024-12-20)
|
18
|
+
|
19
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.18.0...2.19.0)
|
20
|
+
|
21
|
+
**Implemented enhancements:**
|
22
|
+
|
23
|
+
- Add support for macos15\(ARM\) [\#392](https://github.com/voxpupuli/beaker-hostgenerator/pull/392) ([skyamgarp](https://github.com/skyamgarp))
|
24
|
+
- Add support for windowsfips 2016 x64 [\#390](https://github.com/voxpupuli/beaker-hostgenerator/pull/390) ([skyamgarp](https://github.com/skyamgarp))
|
25
|
+
|
5
26
|
## [2.18.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.18.0) (2024-09-24)
|
6
27
|
|
7
28
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.17.0...2.18.0)
|
@@ -27,9 +27,9 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.add_development_dependency 'pry', '~> 0.10'
|
28
28
|
s.add_development_dependency 'rake', '~> 13.0'
|
29
29
|
s.add_development_dependency 'rspec', '~> 3.0'
|
30
|
-
s.add_development_dependency 'rspec-its', '
|
31
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~>
|
30
|
+
s.add_development_dependency 'rspec-its', '>= 1.3.1', '< 3'
|
31
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 3.0.0'
|
32
32
|
|
33
33
|
# Run time dependencies
|
34
|
-
s.
|
34
|
+
s.add_dependency 'deep_merge', '~> 1.0'
|
35
35
|
end
|
@@ -866,6 +866,16 @@ module BeakerHostGenerator
|
|
866
866
|
'locale' => 'fr',
|
867
867
|
},
|
868
868
|
},
|
869
|
+
'windowsfips2016-64' => {
|
870
|
+
general: {
|
871
|
+
'platform' => 'windows-2016-64',
|
872
|
+
'packaging_platform' => 'windowsfips-2016-x64',
|
873
|
+
'ruby_arch' => 'x64',
|
874
|
+
},
|
875
|
+
vmpooler: {
|
876
|
+
'template' => 'win-2016-fips-x86_64',
|
877
|
+
},
|
878
|
+
},
|
869
879
|
'windowsfips2016-6432' => {
|
870
880
|
general: {
|
871
881
|
'platform' => 'windows-2016-64',
|
@@ -1206,6 +1216,8 @@ module BeakerHostGenerator
|
|
1206
1216
|
# macOS
|
1207
1217
|
yield %w[osx14-64 osx-14-x86_64]
|
1208
1218
|
yield %w[osx14-ARM64 osx-14-arm64]
|
1219
|
+
yield %w[osx15-ARM64 osx-15-arm64]
|
1220
|
+
yield %w[osx15-64 osx-15-x86_64]
|
1209
1221
|
end
|
1210
1222
|
end
|
1211
1223
|
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.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
|
@@ -93,30 +92,36 @@ dependencies:
|
|
93
92
|
name: rspec-its
|
94
93
|
requirement: !ruby/object:Gem::Requirement
|
95
94
|
requirements:
|
96
|
-
- - "
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: 1.3.1
|
98
|
+
- - "<"
|
97
99
|
- !ruby/object:Gem::Version
|
98
|
-
version: '
|
100
|
+
version: '3'
|
99
101
|
type: :development
|
100
102
|
prerelease: false
|
101
103
|
version_requirements: !ruby/object:Gem::Requirement
|
102
104
|
requirements:
|
103
|
-
- - "
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: 1.3.1
|
108
|
+
- - "<"
|
104
109
|
- !ruby/object:Gem::Version
|
105
|
-
version: '
|
110
|
+
version: '3'
|
106
111
|
- !ruby/object:Gem::Dependency
|
107
112
|
name: voxpupuli-rubocop
|
108
113
|
requirement: !ruby/object:Gem::Requirement
|
109
114
|
requirements:
|
110
115
|
- - "~>"
|
111
116
|
- !ruby/object:Gem::Version
|
112
|
-
version:
|
117
|
+
version: 3.0.0
|
113
118
|
type: :development
|
114
119
|
prerelease: false
|
115
120
|
version_requirements: !ruby/object:Gem::Requirement
|
116
121
|
requirements:
|
117
122
|
- - "~>"
|
118
123
|
- !ruby/object:Gem::Version
|
119
|
-
version:
|
124
|
+
version: 3.0.0
|
120
125
|
- !ruby/object:Gem::Dependency
|
121
126
|
name: deep_merge
|
122
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -180,7 +185,6 @@ homepage: https://github.com/puppetlabs/beaker-hostgenerator
|
|
180
185
|
licenses:
|
181
186
|
- Apache-2.0
|
182
187
|
metadata: {}
|
183
|
-
post_install_message:
|
184
188
|
rdoc_options: []
|
185
189
|
require_paths:
|
186
190
|
- lib
|
@@ -195,8 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
199
|
- !ruby/object:Gem::Version
|
196
200
|
version: '0'
|
197
201
|
requirements: []
|
198
|
-
rubygems_version: 3.
|
199
|
-
signing_key:
|
202
|
+
rubygems_version: 3.6.2
|
200
203
|
specification_version: 4
|
201
204
|
summary: Beaker Host Generator Utility
|
202
205
|
test_files: []
|