Add official support for Java 21 #2029
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: Installation | |
on: | |
push: | |
paths-ignore: | |
- 'tests/Dockerfile.*-BATS' | |
- 'build.bash' | |
- 'build-image/offline-install-modifications.bash' | |
- '**.md' | |
- '**.txt' | |
- '**.html' | |
- '**.css' | |
- '**.bats' | |
- 'docs/**' | |
- '.github/workflows/**' | |
- '!.github/workflows/installation-action.yml' | |
pull_request: | |
paths-ignore: | |
- 'tests/Dockerfile.*-BATS' | |
- 'build.bash' | |
- 'build-image/offline-install-modifications.bash' | |
- '**.md' | |
- '**.txt' | |
- '**.html' | |
- '**.css' | |
- '**.bats' | |
- 'docs/**' | |
- '.github/workflows/**' | |
- '!.github/workflows/installation-action.yml' | |
jobs: | |
installation-tests: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
services: | |
registry: | |
image: registry:2 | |
ports: | |
- 5000:5000 | |
strategy: | |
matrix: | |
platform: [rpi5-openjdk17, rpi3-openjdk17, amd64-openjdk17, rpi5-openjdk21, rpi5-temurin21] | |
include: | |
- platform: rpi5-openjdk17 | |
dockerfile: ./tests/Dockerfile.rpi5-installation | |
qemu_platform: arm64 | |
buildx_platform: linux/arm64 | |
java_opt: "17" | |
- platform: rpi3-openjdk17 | |
dockerfile: ./tests/Dockerfile.rpi3-installation | |
qemu_platform: arm | |
buildx_platform: linux/arm/v7 | |
java_opt: "17" | |
- platform: amd64-openjdk17 | |
dockerfile: ./tests/Dockerfile.amd64-installation | |
qemu_platform: "" | |
buildx_platform: linux/amd64 | |
java_opt: "17" | |
- platform: rpi5-openjdk21 | |
dockerfile: ./tests/Dockerfile.rpi5-installation | |
qemu_platform: arm64 | |
buildx_platform: linux/arm64 | |
java_opt: "21" | |
continue-on-error: true # Experimental currently | |
- platform: rpi5-temurin21 | |
dockerfile: ./tests/Dockerfile.rpi5-installation | |
qemu_platform: arm64 | |
buildx_platform: linux/arm64 | |
java_opt: "Temurin21" | |
continue-on-error: true # Experimental currently | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
run: | | |
sudo -E ./tests/ci-setup.bash github | |
sed -i 's|java_opt=.*$|java_opt='"${{ matrix.java_opt }}"'|' build-image/openhabian.conf | |
- name: Set up QEMU | |
if: ${{ matrix.qemu_platform != '' }} | |
uses: docker/[email protected] | |
with: | |
platforms: ${{ matrix.qemu_platform }} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/[email protected] | |
with: | |
driver-opts: network=host | |
- name: Build Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ${{ matrix.dockerfile }} | |
builder: ${{ steps.buildx.outputs.name }} | |
tags: localhost:5000/openhabian/${{ matrix.platform }}:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
platforms: ${{ matrix.buildx_platform }} | |
push: true | |
- name: openHABian installation test with ${{ matrix.platform }} | |
run: | | |
docker run --privileged --rm --platform ${{ matrix.buildx_platform }} --name "openhabian-${{ matrix.platform }}" -d localhost:5000/openhabian/${{ matrix.platform }} | |
docker exec -i "openhabian-${{ matrix.platform }}" bash -c './build.bash local-test && /boot/first-boot.bash' | |
shell: bash |