2024-02-22 20:07:03 +02:00
|
|
|
name: Cloud Hypervisor Tests (VFIO)
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Tests (VFIO)
|
|
|
|
runs-on: jammy-vfio
|
|
|
|
steps:
|
2024-02-29 14:23:30 -08:00
|
|
|
- name: Fix workspace permissions
|
|
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
|
|
run: sudo chown -R github-runner:github-runner ${GITHUB_WORKSPACE}
|
2024-02-22 20:07:03 +02:00
|
|
|
- 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
|