beaker-hostgenerator 2.3.0 → 2.4.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 +1 -1
- data/.github/workflows/test.yml +2 -2
- data/CHANGELOG.md +11 -0
- data/lib/beaker-hostgenerator/data.rb +21 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22cf38a373925f63fb310902730bf1532e53a460527a6259233821c93a0db8fe
|
4
|
+
data.tar.gz: 14f713eed9df7579c542266b423092fa57a063d6d51c0ac9e2e03a3a82417de2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: defe372c4dbaf393d101bc7ce7a4e12b59b1bcf040fb7da6b4b449f136cf449cbbefde28397351d8f79e8c50035d180b60c8fb51aaa28d320cfa4e35f7a5d87a
|
7
|
+
data.tar.gz: f882b7baf795a40252d243c53d4e987c1e2965a9c5d61caa64b29bf1ccea85f463448cc79893dde483b5a493e1f77d58f42063319a3779aa69a02f7fafd32c6d
|
data/.github/workflows/test.yml
CHANGED
@@ -12,7 +12,7 @@ jobs:
|
|
12
12
|
BUNDLE_WITHOUT: release
|
13
13
|
runs-on: ubuntu-latest
|
14
14
|
steps:
|
15
|
-
- uses: actions/checkout@
|
15
|
+
- uses: actions/checkout@v4
|
16
16
|
- name: Install Ruby ${{ matrix.ruby }}
|
17
17
|
uses: ruby/setup-ruby@v1
|
18
18
|
with:
|
@@ -36,7 +36,7 @@ jobs:
|
|
36
36
|
COVERAGE: ${{ matrix.coverage }}
|
37
37
|
BUNDLE_WITHOUT: release:rubocop
|
38
38
|
steps:
|
39
|
-
- uses: actions/checkout@
|
39
|
+
- uses: actions/checkout@v4
|
40
40
|
- name: Install Ruby ${{ matrix.ruby }}
|
41
41
|
uses: ruby/setup-ruby@v1
|
42
42
|
with:
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.4.0) (2023-09-12)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.3.0...2.4.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- \(RE-15541\) Add debian-12-arm64 support [\#331](https://github.com/voxpupuli/beaker-hostgenerator/pull/331) ([yachub](https://github.com/yachub))
|
12
|
+
- Add debian-11-arm64 support [\#330](https://github.com/voxpupuli/beaker-hostgenerator/pull/330) ([yachub](https://github.com/yachub))
|
13
|
+
- \(RE-15206\) Add ubuntu-2204-arm64 fixtures [\#328](https://github.com/voxpupuli/beaker-hostgenerator/pull/328) ([yachub](https://github.com/yachub))
|
14
|
+
- \(RE-15156\) Add redhat-9-arm64 support [\#327](https://github.com/voxpupuli/beaker-hostgenerator/pull/327) ([yachub](https://github.com/yachub))
|
15
|
+
|
5
16
|
## [2.3.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.3.0) (2023-08-11)
|
6
17
|
|
7
18
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.2.3...2.3.0)
|
@@ -185,6 +185,11 @@ module BeakerHostGenerator
|
|
185
185
|
'box' => 'debian/bullseye64',
|
186
186
|
},
|
187
187
|
},
|
188
|
+
'debian11-AARCH64' => {
|
189
|
+
general: {
|
190
|
+
'platform' => 'debian-11-aarch64',
|
191
|
+
},
|
192
|
+
},
|
188
193
|
'debian12-64' => {
|
189
194
|
general: {
|
190
195
|
'platform' => 'debian-12-amd64',
|
@@ -193,6 +198,11 @@ module BeakerHostGenerator
|
|
193
198
|
'box' => 'debian/bookworm64',
|
194
199
|
},
|
195
200
|
},
|
201
|
+
'debian12-AARCH64' => {
|
202
|
+
general: {
|
203
|
+
'platform' => 'debian-12-aarch64',
|
204
|
+
},
|
205
|
+
},
|
196
206
|
'panos61-64' => {
|
197
207
|
general: {
|
198
208
|
'platform' => 'palo-alto-6.1.0-x86_64',
|
@@ -361,6 +371,17 @@ module BeakerHostGenerator
|
|
361
371
|
'platform' => 'el-9-x86_64',
|
362
372
|
},
|
363
373
|
},
|
374
|
+
'redhat9-AARCH64' => {
|
375
|
+
general: {
|
376
|
+
'platform' => 'el-9-aarch64',
|
377
|
+
},
|
378
|
+
abs: {
|
379
|
+
'template' => 'redhat-9-arm64',
|
380
|
+
},
|
381
|
+
vmpooler: {
|
382
|
+
'template' => 'redhat-9-arm64',
|
383
|
+
},
|
384
|
+
},
|
364
385
|
'sles11-32' => {
|
365
386
|
general: {
|
366
387
|
'platform' => 'sles-11-i386',
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-hostgenerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2023-
|
14
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fakefs
|