mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-31 17:05:18 +00:00
8b0d43e2fe
Signed-off-by: Rob Bradford <rbradford@rivosinc.com> (cherry picked from commit 89f2a4882ebb6f5416d531e72577399b55aca4d3)
19 lines
523 B
YAML
19 lines
523 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
|
|
run: scripts/dev_cli.sh tests --unit
|
|
- name: Load openvswitch module
|
|
run: sudo modprobe openvswitch
|
|
- name: Run integration tests
|
|
run: scripts/dev_cli.sh tests --integration |