Skip to content

Commit 5c3f281

Browse files
authored
platforms (#748)
* fix: Debian suites Signed-off-by: Dan Webb <[email protected]> * Switch Debian 11 for 13 Signed-off-by: Dan Webb <[email protected]> --------- Signed-off-by: Dan Webb <[email protected]>
1 parent b77e2a2 commit 5c3f281

File tree

3 files changed

+52
-24
lines changed

3 files changed

+52
-24
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
os:
2525
- amazonlinux-2023
2626
- debian-12
27-
- debian-11
27+
- debian-13
2828
- rockylinux-9
2929
- rockylinux-8
3030
- ubuntu-2204

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: release
3+
4+
5+
"on":
6+
push:
7+
branches: [main]
8+
9+
permissions:
10+
contents: write
11+
issues: write
12+
pull-requests: write
13+
packages: write
14+
attestations: write
15+
id-token: write
16+
17+
jobs:
18+
release:
19+
uses: sous-chefs/.github/.github/workflows/release-cookbook.yml@main
20+
secrets:
21+
token: ${{ secrets.PORTER_GITHUB_TOKEN }}
22+
supermarket_user: ${{ secrets.CHEF_SUPERMARKET_USER }}
23+
supermarket_key: ${{ secrets.CHEF_SUPERMARKET_KEY }}
24+
slack_bot_token: ${{ secrets.SLACK_BOT_TOKEN }}
25+
slack_channel_id: ${{ secrets.SLACK_CHANNEL_ID }}

kitchen.yml

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ verifier:
1313
platforms:
1414
- name: amazonlinux-2023
1515
- name: debian-12
16-
- name: debian-11
16+
- name: debian-13
1717
- name: freebsd-13
1818
- name: fedora-latest
1919
- name: rockylinux-9
@@ -31,14 +31,6 @@ suites:
3131
inspec_tests: [test/integration/openjdk]
3232
inputs: { java_version: "11" }
3333

34-
- name: openjdk-16
35-
run_list:
36-
- recipe[test::openjdk]
37-
attributes: { version: "16" }
38-
verifier:
39-
inspec_tests: [test/integration/openjdk]
40-
inputs: { java_version: "16" }
41-
4234
- name: openjdk-17
4335
run_list:
4436
- recipe[test::openjdk]
@@ -48,23 +40,13 @@ suites:
4840
inputs: { java_version: "17" }
4941

5042
# Temurin
51-
- name: temurin-8
52-
run_list:
53-
- recipe[test::temurin_pkg]
54-
attributes:
55-
version: 8
56-
verifier:
57-
inspec_tests: [test/integration/temurin]
58-
inputs: { java_version: "8" }
59-
6043
- name: temurin-11
6144
run_list:
6245
- recipe[test::temurin_pkg]
6346
attributes:
6447
version: 11
6548
verifier:
66-
inspec_tests:
67-
- test/integration/temurin
49+
inspec_tests: [test/integration/temurin]
6850
inputs: { java_version: "11" }
6951

7052
- name: temurin-17
@@ -87,6 +69,16 @@ suites:
8769
- test/integration/temurin
8870
inputs: { java_version: "21" }
8971

72+
- name: temurin-25
73+
run_list:
74+
- recipe[test::temurin_pkg]
75+
attributes:
76+
version: 25
77+
verifier:
78+
inspec_tests:
79+
- test/integration/temurin
80+
inputs: { java_version: "25" }
81+
9082
# Corretto
9183
- name: corretto-8
9284
run_list:
@@ -95,24 +87,35 @@ suites:
9587
verifier:
9688
inspec_tests: [test/integration/corretto]
9789
inputs: { java_version: "8" }
90+
9891
- name: corretto-11
9992
run_list:
10093
- recipe[test::corretto]
10194
attributes: { version: "11" }
10295
verifier:
10396
inspec_tests: [test/integration/corretto]
10497
inputs: { java_version: "11" }
98+
10599
- name: corretto-17
106100
run_list:
107101
- recipe[test::corretto]
108102
attributes: { version: "17" }
109103
verifier:
110104
inspec_tests: [test/integration/corretto]
111105
inputs: { java_version: "17" }
112-
- name: corretto-18
106+
107+
- name: corretto-21
108+
run_list:
109+
- recipe[test::corretto]
110+
attributes: { version: "21" }
111+
verifier:
112+
inspec_tests: [test/integration/corretto]
113+
inputs: { java_version: "21" }
114+
115+
- name: corretto-25
113116
run_list:
114117
- recipe[test::corretto]
115-
attributes: { version: "18" }
118+
attributes: { version: "25" }
116119
verifier:
117120
inspec_tests: [test/integration/corretto]
118-
inputs: { java_version: "18" }
121+
inputs: { java_version: "25" }

0 commit comments

Comments
 (0)