Remove legacy openHAB2 support #1882
Workflow file for this run
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 | |
services: | |
registry: | |
image: registry:2 | |
ports: | |
- 5000:5000 | |
strategy: | |
matrix: | |
platform: [rpi5-openjdk17, rpi3-openjdk17, amd64-openjdk17, rpi3-bellsoft21] | |
include: | |
- platform: rpi5-openjdk17 | |
dockerfile: ./tests/Dockerfile.rpi5-installation | |
qemu_platform: arm64 | |
java_opt: "17" | |
- platform: rpi3-openjdk17 | |
dockerfile: ./tests/Dockerfile.rpi3-installation | |
qemu_platform: arm | |
java_opt: "17" | |
- platform: amd64-openjdk17 | |
dockerfile: ./tests/Dockerfile.amd64-installation | |
qemu_platform: "" | |
java_opt: "17" | |
- platform: rpi3-bellsoft21 | |
dockerfile: ./tests/Dockerfile.rpi3-installation | |
qemu_platform: arm | |
java_opt: "BellSoft21" | |
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/setup-qemu-action@v3.2.0 | |
with: | |
platforms: ${{ matrix.qemu_platform }} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
with: | |
driver-opts: network=host | |
- name: Build Docker image | |
uses: docker/build-push-action@v6.9.0 | |
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 | |
push: true | |
- name: openHABian installation test with ${{ matrix.platform }} | |
run: | | |
docker run --privileged --rm --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 |