Cloud Hypervisor Tests (ARM64) #1
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: Cloud Hypervisor Tests (ARM64) | |
on: [pull_request, create] | |
jobs: | |
build: | |
timeout-minutes: 60 | |
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) | |
timeout-minutes: 30 | |
run: scripts/dev_cli.sh tests --integration --libc musl |