From 92e48f7cf6b3b5b5abfe645f91553f3cb9fb0c92 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sat, 12 Oct 2024 18:12:24 +0100 Subject: [PATCH] build: Enable new VFIO worker Based on revert of commit 78ea83d753209b033c4f3abc62c86038676079c1. Signed-off-by: Rob Bradford --- .github/workflows/integration-vfio.yaml | 33 +++++++++++++++++++++++++ 1 file changed, 33 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..3549ace27 --- /dev/null +++ b/.github/workflows/integration-vfio.yaml @@ -0,0 +1,33 @@ +name: Cloud Hypervisor Tests (VFIO) +on: [merge_group, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: Tests (VFIO) + runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'vfio-nvidia' }} + env: + AUTH_DOWNLOAD_TOKEN: ${{ secrets.AUTH_DOWNLOAD_TOKEN }} + steps: + - name: Fix workspace permissions + if: ${{ github.event_name != 'pull_request' }} + run: sudo chown -R runner:runner ${GITHUB_WORKSPACE} + - name: Code checkout + if: ${{ github.event_name != 'pull_request' }} + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Run VFIO integration tests + if: ${{ github.event_name != 'pull_request' }} + timeout-minutes: 15 + run: scripts/dev_cli.sh tests --integration-vfio + # Most tests are failing with musl see #6790 + # - name: Run VFIO integration tests for musl + # if: ${{ github.event_name != 'pull_request' }} + # timeout-minutes: 15 + # run: scripts/dev_cli.sh tests --integration-vfio --libc musl + - name: Skipping build for PR + if: ${{ github.event_name == 'pull_request' }} + run: echo "Skipping build for PR"