cloud-hypervisor/.github/workflows/integration-arm64.yaml
Rob Bradford 6e544d0a30 build: Switch GitHub action ARM64 builds to musl
Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
(cherry picked from commit 6ec83c7d8ee17e7db00a8e0be70484145d7171aa)
2024-03-14 19:52:57 -07:00

19 lines
561 B
YAML

name: Cloud Hypervisor Tests (ARM64)
on: [pull_request, create]
jobs:
build:
if: github.event_name == 'pull_request'
name: Tests (ARM64)
runs-on: focal-arm64
steps:
- name: Code checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run unit tests (musl)
run: scripts/dev_cli.sh tests --unit --libc musl
- name: Load openvswitch module
run: sudo modprobe openvswitch
- name: Run integration tests (musl)
run: scripts/dev_cli.sh tests --integration --libc musl