beaker-hostgenerator 2.3.0 → 2.5.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 +20 -0
- data/lib/beaker-hostgenerator/data.rb +25 -1
- data/lib/beaker-hostgenerator/hypervisor/abs.rb +1 -1
- 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: 7b52d38a0594435ebf51c4bd03d67a7671a1d90ba47ac60ec8f408792da1564e
|
4
|
+
data.tar.gz: 825344e22b2dcd864e1c2f612eb924f3e2fe3eef71050788cb019422fc51d6b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de5dd73d4a194cf3386af3a48f042a52c1b76e24b5b096e24172f89500772bebe5af1e7740f73a381fc0467f31291f496568fd8fa4ab2b7119da334446009f2a
|
7
|
+
data.tar.gz: 49a37f224ed30d6f5506bced2c290de626157041151bee6bc4ddcd31b22bea4770e96aed5922c80b88a4533a203b7204dd51bdfed2d31c599560f494e8f243bc
|
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,26 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.5.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.5.0) (2023-09-25)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.4.0...2.5.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Add amazon-2023-x86\_64 [\#333](https://github.com/voxpupuli/beaker-hostgenerator/pull/333) ([yachub](https://github.com/yachub))
|
12
|
+
- Add fedora-37-x86\_64 and fedora-38-x86\_64 [\#332](https://github.com/voxpupuli/beaker-hostgenerator/pull/332) ([yachub](https://github.com/yachub))
|
13
|
+
|
14
|
+
## [2.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.4.0) (2023-09-12)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.3.0...2.4.0)
|
17
|
+
|
18
|
+
**Implemented enhancements:**
|
19
|
+
|
20
|
+
- \(RE-15541\) Add debian-12-arm64 support [\#331](https://github.com/voxpupuli/beaker-hostgenerator/pull/331) ([yachub](https://github.com/yachub))
|
21
|
+
- Add debian-11-arm64 support [\#330](https://github.com/voxpupuli/beaker-hostgenerator/pull/330) ([yachub](https://github.com/yachub))
|
22
|
+
- \(RE-15206\) Add ubuntu-2204-arm64 fixtures [\#328](https://github.com/voxpupuli/beaker-hostgenerator/pull/328) ([yachub](https://github.com/yachub))
|
23
|
+
- \(RE-15156\) Add redhat-9-arm64 support [\#327](https://github.com/voxpupuli/beaker-hostgenerator/pull/327) ([yachub](https://github.com/yachub))
|
24
|
+
|
5
25
|
## [2.3.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.3.0) (2023-08-11)
|
6
26
|
|
7
27
|
[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',
|
@@ -1046,7 +1067,7 @@ module BeakerHostGenerator
|
|
1046
1067
|
# @api private
|
1047
1068
|
def generate_osinfo
|
1048
1069
|
# Fedora
|
1049
|
-
(19..
|
1070
|
+
(19..38).each do |release|
|
1050
1071
|
# 32 bit support was dropped in Fedora 31
|
1051
1072
|
yield ["fedora#{release}-32", "fedora-#{release}-i386"] if release < 31
|
1052
1073
|
|
@@ -1077,6 +1098,9 @@ module BeakerHostGenerator
|
|
1077
1098
|
yield ["freebsd#{release}-64", "freebsd-#{release}-amd64"]
|
1078
1099
|
end
|
1079
1100
|
|
1101
|
+
# Amazon Linux
|
1102
|
+
yield %w[amazon2023-64 amazon-2023-x86_64]
|
1103
|
+
|
1080
1104
|
# AlmaLinux and Rocky
|
1081
1105
|
%w[almalinux rocky].each do |os|
|
1082
1106
|
(8..9).each do |release|
|
@@ -25,7 +25,7 @@ module BeakerHostGenerator
|
|
25
25
|
case node_info['ostype']
|
26
26
|
when /^(almalinux|centos|oracle|redhat|rocky|scientific)/
|
27
27
|
base_config['template'] ||= base_config['platform'].gsub(/^el/, ::Regexp.last_match(1))
|
28
|
-
when /^fedora/, /^opensuse/, /^panos/
|
28
|
+
when /^amazon/, /^fedora/, /^opensuse/, /^panos/
|
29
29
|
base_config['template'] ||= base_config['platform']
|
30
30
|
when /^(debian|ubuntu)/
|
31
31
|
os = Regexp.last_match(1)
|
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.5.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-25 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fakefs
|