mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-08 21:00:14 +00:00
f48942ce3f
When a bare-metal worker is canceled, its workspace can be left with files owned by the root user as a result of running tests from our container. This patch add a step to fix workspace permissions for such case before checking out code. Signed-off-by: Bo Chen <chen.bo@intel.com>
25 lines
693 B
YAML
25 lines
693 B
YAML
name: Cloud Hypervisor Tests (VFIO)
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Tests (VFIO)
|
|
runs-on: jammy-vfio
|
|
steps:
|
|
- name: Fix workspace permissions
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
run: sudo chown -R github-runner:github-runner ${GITHUB_WORKSPACE}
|
|
- 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
|