From b765acd6081c0d2e3e88f2d2f1a4db38661c3d37 Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Thu, 22 Feb 2024 20:07:03 +0200 Subject: [PATCH] build: Add GitHub action for VFIO integration tests Signed-off-by: Ravi kumar Veeramally --- .github/workflows/integration-vfio.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/integration-vfio.yaml diff --git a/.github/workflows/integration-vfio.yaml b/.github/workflows/integration-vfio.yaml new file mode 100644 index 000000000..1124affce --- /dev/null +++ b/.github/workflows/integration-vfio.yaml @@ -0,0 +1,22 @@ +name: Cloud Hypervisor Tests (VFIO) +on: + push: + branches: + - main + +jobs: + build: + if: github.event_name == 'push' + name: Tests (VFIO) + runs-on: jammy-vfio + steps: + - name: Code checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Run VFIO integration tests + timeout-minutes: 15 + run: scripts/dev_cli.sh tests --integration-vfio + - name: Run VFIO integration tests for musl + timeout-minutes: 15 + run: scripts/dev_cli.sh tests --integration-vfio --libc musl