Update Temurin support #517
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Test" | |
"on": | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
lint-unit: | |
uses: sous-chefs/.github/.github/workflows/[email protected] | |
permissions: | |
actions: write | |
checks: write | |
pull-requests: write | |
statuses: write | |
issues: write | |
integration: | |
needs: "lint-unit" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: | |
- amazonlinux-2023 | |
- debian-12 | |
- debian-11 | |
- rockylinux-9 | |
- rockylinux-8 | |
- ubuntu-2204 | |
- ubuntu-2004 | |
suite: | |
# - openjdk-11 # Debian doesn't have an 11 package | |
- openjdk-16 | |
- openjdk-17 | |
# - temurin-8-hotspot | |
# - temurin-11-hotspot | |
# - semeru-11-openj9 | |
# - semeru-17-openj9 | |
- corretto-8 | |
- corretto-11 | |
- corretto-17 | |
- corretto-18 | |
fail-fast: false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Chef | |
uses: actionshub/[email protected] | |
- name: Dokken | |
uses: actionshub/[email protected] | |
env: | |
CHEF_LICENSE: accept-no-persist | |
KITCHEN_LOCAL_YAML: kitchen.dokken.yml | |
with: | |
suite: ${{ matrix.suite }} | |
os: ${{ matrix.os }} | |
final: | |
runs-on: ubuntu-latest | |
needs: [integration] | |
steps: | |
- run: echo ${{needs.integration.outputs}} |