Skip to content

Commit 7d66010

Browse files
committed
(PIE-1595) Update supported OS in metadata
1 parent 133760f commit 7d66010

File tree

3 files changed

+33
-15
lines changed

3 files changed

+33
-15
lines changed

.github/workflows/nightly_testing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
- name: Get Test Matrix
3131
id: get-matrix
3232
run: |
33-
bundle exec matrix_from_metadata_v3 --output stdout | jq
33+
bundle exec matrix_from_metadata_v3 --provision-include provision_service --output stdout
34+
bundle exec matrix_from_metadata_v3
3435
- name: Set nightly releases
3536
id: nightly_release
3637
run: |
@@ -39,7 +40,7 @@ jobs:
3940
- name: Setup Spec Test Matrix
4041
id: set-matrix
4142
run: |
42-
echo "matrix={\"platforms\":[\"rhel-8\",\"rhel-9\",\"sles-15\",\"ubuntu-2004-lts\"]}" >> $GITHUB_OUTPUT
43+
echo "matrix={\"platforms\":[\"rhel-8\",\"rhel-9\",\"sles-15\",\"ubuntu-2204-lts\"]}" >> $GITHUB_OUTPUT
4344
- name: Setup Acceptance Test Matrix
4445
id: build-matrix
4546
run: |

metadata.json

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,31 @@
1919
],
2020
"operatingsystem_support": [
2121
{
22-
"operatingsystem": "CentOS",
22+
"operatingsystem": "AlmaLinux",
2323
"operatingsystemrelease": [
24-
"7"
24+
"8",
25+
"9"
26+
]
27+
},
28+
{
29+
"operatingsystem": "AmazonLinux",
30+
"operatingsystemrelease": [
31+
"2"
32+
]
33+
},
34+
{
35+
"operatingsystem": "Debian",
36+
"operatingsystemrelease": [
37+
"9",
38+
"10",
39+
"11"
2540
]
2641
},
2742
{
2843
"operatingsystem": "OracleLinux",
2944
"operatingsystemrelease": [
30-
"7"
45+
"7",
46+
"8"
3147
]
3248
},
3349
{
@@ -39,24 +55,25 @@
3955
]
4056
},
4157
{
42-
"operatingsystem": "Scientific",
58+
"operatingsystem": "RockyLinux",
4359
"operatingsystemrelease": [
44-
"7"
60+
"8",
61+
"9"
4562
]
4663
},
4764
{
48-
"operatingsystem": "Ubuntu",
65+
"operatingsystem": "SLES",
4966
"operatingsystemrelease": [
50-
"18.04",
51-
"20.04",
52-
"22.04"
67+
"12",
68+
"15"
5369
]
5470
},
5571
{
56-
"operatingsystem": "SLES",
72+
"operatingsystem": "Ubuntu",
5773
"operatingsystemrelease": [
58-
"12",
59-
"15"
74+
"18.04",
75+
"20.04",
76+
"22.04"
6077
]
6178
}
6279
],

spec/spec_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ def ensure_module_defined(module_name)
7373
end
7474

7575
# 'spec_overrides' from sync.yml will appear below this line
76-
#
76+
#

0 commit comments

Comments
 (0)