From 89f2a4882ebb6f5416d531e72577399b55aca4d3 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 22 Feb 2024 11:22:27 +0000 Subject: [PATCH] build: Add GitHub action for ARM64 integration tests Signed-off-by: Rob Bradford --- .github/workflows/integration-arm64.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/integration-arm64.yaml diff --git a/.github/workflows/integration-arm64.yaml b/.github/workflows/integration-arm64.yaml new file mode 100644 index 000000000..fc48655c5 --- /dev/null +++ b/.github/workflows/integration-arm64.yaml @@ -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 \ No newline at end of file