From 78ea83d753209b033c4f3abc62c86038676079c1 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 7 Oct 2024 14:11:27 +0100 Subject: [PATCH] build: Temporarily remove vfio workflow This worker is no longer available. Signed-off-by: Rob Bradford --- .github/workflows/integration-vfio.yaml | 32 ------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/integration-vfio.yaml diff --git a/.github/workflows/integration-vfio.yaml b/.github/workflows/integration-vfio.yaml deleted file mode 100644 index 196b1d430..000000000 --- a/.github/workflows/integration-vfio.yaml +++ /dev/null @@ -1,32 +0,0 @@ -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' || 'jammy-vfio' }} - env: - AUTH_DOWNLOAD_TOKEN: ${{ secrets.AUTH_DOWNLOAD_TOKEN }} - steps: - - name: Fix workspace permissions - if: ${{ github.event_name != 'pull_request' }} - run: sudo chown -R github-runner:github-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 - - 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"