mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 13:45:20 +00:00
build: Add GitHub action for ARM64 integration tests
Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
parent
307a0166c5
commit
89f2a4882e
19
.github/workflows/integration-arm64.yaml
vendored
Normal file
19
.github/workflows/integration-arm64.yaml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
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
|
Loading…
Reference in New Issue
Block a user