Rust Hypervisor Firmware Tests #71
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: Rust Hypervisor Firmware Tests | |
on: [pull_request, merge_group] | |
jobs: | |
build: | |
name: Tests | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- runner: ubuntu-22.04 | |
coreboot-tests: true | |
- runner: focal-arm64 | |
coreboot-tests: false | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run unit tests | |
run: scripts/dev_cli.sh tests --unit | |
- name: Run integration tests | |
run: scripts/dev_cli.sh tests --integration | |
- if: ${{ matrix.coreboot-tests }} | |
name: Run coreboot integration tests | |
run: scripts/dev_cli.sh tests --integration-coreboot |