openvoxserver-ca 3.0.0.pre.rc1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/unit_tests.yaml +27 -5
- data/.gitignore +1 -0
- data/CHANGELOG.md +8 -0
- data/lib/puppetserver/ca/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11405667e7482bcb0b64a8411de1227b1908bc393b30a9f074438ddb034e6523
|
4
|
+
data.tar.gz: bdfc99a2a215f2fab282f8c818c6793526246eb81b67328ad9318c0e2d68c1c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed681e739f2ba95da27c6d374550b70158234655fec37b0d2fe0c8e9b8ab688811c3a84acabfb321bedaee1d77932b00066cd1db11de321225f8600835246f70
|
7
|
+
data.tar.gz: 44b0de471e6fa9095cf25cb23aaa7dad35b522b9eaac10e310ac78acf619a218c9fe295c0de03fb2b721ad470357fdaa745909678fe9c764a7f1bec320880986
|
@@ -17,16 +17,29 @@ env:
|
|
17
17
|
CI: true
|
18
18
|
|
19
19
|
jobs:
|
20
|
+
matrix:
|
21
|
+
runs-on: ubuntu-24.04
|
22
|
+
outputs:
|
23
|
+
ruby: ${{ steps.ruby.outputs.versions }}
|
24
|
+
steps:
|
25
|
+
- uses: actions/checkout@v4
|
26
|
+
- name: Install Ruby 3.4
|
27
|
+
uses: ruby/setup-ruby@v1
|
28
|
+
with:
|
29
|
+
ruby-version: '3.4'
|
30
|
+
bundler-cache: true
|
31
|
+
#- name: Run RuboCop
|
32
|
+
# run: bundle exec rake rubocop
|
33
|
+
- id: ruby
|
34
|
+
uses: voxpupuli/ruby-version@v1
|
35
|
+
|
20
36
|
linux_unit_tests:
|
37
|
+
needs: matrix
|
21
38
|
name: Ruby version
|
22
39
|
strategy:
|
23
40
|
fail-fast: false
|
24
41
|
matrix:
|
25
|
-
ruby:
|
26
|
-
- '2.7'
|
27
|
-
- '3.0'
|
28
|
-
- '3.2'
|
29
|
-
- '3.3'
|
42
|
+
ruby: ${{ fromJSON(needs.matrix.outputs.ruby) }}
|
30
43
|
runs-on: ubuntu-24.04
|
31
44
|
steps:
|
32
45
|
- name: Checkout current PR
|
@@ -43,3 +56,12 @@ jobs:
|
|
43
56
|
bundle env
|
44
57
|
|
45
58
|
- run: bundle exec rake spec_random
|
59
|
+
|
60
|
+
tests:
|
61
|
+
needs:
|
62
|
+
- matrix
|
63
|
+
- linux_unit_tests
|
64
|
+
runs-on: ubuntu-24.04
|
65
|
+
name: Test suite
|
66
|
+
steps:
|
67
|
+
- run: echo Test suite completed
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [3.0.0](https://github.com/openvoxproject/openvoxserver-ca/tree/3.0.0) (2025-07-10)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/openvoxproject/openvoxserver-ca/compare/3.0.0-rc1...3.0.0)
|
8
|
+
|
9
|
+
**Merged pull requests:**
|
10
|
+
|
11
|
+
- CI: Add dummy job we can depend on & Generate ruby matrix dynamically [\#9](https://github.com/OpenVoxProject/openvoxserver-ca/pull/9) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
5
13
|
## [3.0.0-rc1](https://github.com/openvoxproject/openvoxserver-ca/tree/3.0.0-rc1) (2025-07-09)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/openvoxproject/openvoxserver-ca/compare/2.7.0...3.0.0-rc1)
|