Test HAOS 11.2.dev20231030 #23
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: Test HAOS image | |
run-name: "Test HAOS ${{ inputs.version || format('(OS build #{0})', github.event.workflow_run.run_number) }}" | |
on: | |
# Manual test of specified version | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version of HAOS to test | |
required: true | |
type: string | |
# Called by other workflows (e.g. build.yaml) | |
workflow_call: | |
inputs: | |
use-artifact: | |
# Workaround for GH weirdness: https://github.com/actions/runner/discussions/1884 | |
description: Download OS image using actions/download-artifact | |
required: false | |
type: boolean | |
default: true | |
jobs: | |
test: | |
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }} | |
env: | |
NO_KVM: 1 | |
name: Test in QEMU | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Install system dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y qemu-system-x86 ovmf | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- name: Install Python requirements | |
run: | |
pip install -r tests/requirements.txt | |
- name: Download HAOS image | |
if: ${{ !inputs.use-artifact }} | |
run: | | |
curl -sfL -o haos.qcow2.xz https://os-artifacts.home-assistant.io/${{github.event.inputs.version}}/haos_ova-${{github.event.inputs.version}}.qcow2.xz | |
- name: Get OS image artifact | |
if: ${{ inputs.use-artifact }} | |
uses: actions/download-artifact@v3 | |
with: | |
name: ova-image | |
- name: Extract OS image | |
run: | | |
xz -dc haos*.qcow2.xz > tests/haos.qcow2 | |
rm haos*.qcow2.xz | |
- name: Run tests | |
run: | | |
./tests/run_tests.sh | |
- name: Archive logs | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: logs | |
path: | | |
tests/lg_logs/** | |
- name: Archive JUnit reports | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: junit_reports | |
path: | | |
tests/junit_reports/*.xml | |
- name: Publish test report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() | |
with: | |
report_paths: 'tests/junit_reports/*.xml' | |
annotate_only: true | |
detailed_summary: true |