mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-19 11:05:18 +00:00
ea12024793
Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@intel.com> (cherry picked from commit b765acd6081c0d2e3e88f2d2f1a4db38661c3d37)
23 lines
559 B
YAML
23 lines
559 B
YAML
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
|