beaker-hostgenerator 2.19.0 → 2.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b47606eff66aa5d71d8c80b5d17d6ea61415bd5ea40e06f720abb931f2c49a8a
4
- data.tar.gz: 99224eb4b07a48ef394d3d73883b75d8334c39cf44ce4dabe54645f1e0977890
3
+ metadata.gz: cd72d76864e74cb20cf89d6426e6118f03c7ab512eb297cebe7405229a27d731
4
+ data.tar.gz: 7babdc689d85c982e0629f4d50a9c77e391bd0d3e13fa111acfb5f80c1ea83af
5
5
  SHA512:
6
- metadata.gz: b35bd4a443fec2113c30a5c69774c6eadcd867b965fa5671b23437503f2cc95d0823b23269788794bb8febbc9e9152a20b1ccbb2135ca90a7ef277615e84fc0d
7
- data.tar.gz: a40166fc120cd165cff5a0ea73fafee7ffdc87de4c6cd42aee1734d1f73a9ee253ce533ec00c2c58f455eecc8083124ec793184a51cbb31ae812092f374f2aea
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.3
14
+ - name: Install Ruby 3.4
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
17
- ruby-version: '3.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
@@ -6,49 +6,48 @@ on:
6
6
  branches:
7
7
  - master
8
8
 
9
+ env:
10
+ BUNDLE_WITHOUT: release
11
+
9
12
  jobs:
10
- rubocop:
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 ${{ matrix.ruby }}
19
+ - name: Install Ruby 3.4
17
20
  uses: ruby/setup-ruby@v1
18
21
  with:
19
- ruby-version: "3.3"
22
+ ruby-version: '3.4'
20
23
  bundler-cache: true
21
- - name: Run Rubocop
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
- include:
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: Install Ruby ${{ matrix.ruby }}
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)
@@ -1217,6 +1217,7 @@ module BeakerHostGenerator
1217
1217
  yield %w[osx14-64 osx-14-x86_64]
1218
1218
  yield %w[osx14-ARM64 osx-14-arm64]
1219
1219
  yield %w[osx15-ARM64 osx-15-arm64]
1220
+ yield %w[osx15-64 osx-15-x86_64]
1220
1221
  end
1221
1222
  end
1222
1223
  end
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.19.0'
3
+ STRING = '2.20.0'
4
4
  end
5
5
  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.19.0
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: 2024-12-20 00:00:00.000000000 Z
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.5.22
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: []