mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-19 11:05:18 +00:00
1f6b43db49
And clean up some of the whitespace formatting so that the "name" and "on" are grouped away from the "jobs". Signed-off-by: Rob Bradford <rbradford@rivosinc.com> (cherry picked from commit d9f48505fec88940025e6844cc541e84ffbff6dd)
20 lines
574 B
YAML
20 lines
574 B
YAML
name: Cloud Hypervisor Tests (ARM64)
|
|
on: [pull_request, merge_group]
|
|
|
|
jobs:
|
|
build:
|
|
timeout-minutes: 60
|
|
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)
|
|
timeout-minutes: 30
|
|
run: scripts/dev_cli.sh tests --integration --libc musl |