mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-31 17:05:18 +00:00
d1953633e2
Add top-level timeout for the jobs and also more agressive per step timeouts. Signed-off-by: Rob Bradford <rbradford@rivosinc.com> (cherry picked from commit 1fe2771a0ddb05d5e952eb67a18a34d656efe3a7)
21 lines
613 B
YAML
21 lines
613 B
YAML
name: Cloud Hypervisor Tests (ARM64)
|
|
on: [pull_request, create]
|
|
|
|
jobs:
|
|
build:
|
|
timeout-minutes: 60
|
|
if: github.event_name == 'pull_request'
|
|
name: Tests (ARM64)
|
|
runs-on: focal-arm64
|
|
steps:
|
|
- name: Code checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run unit tests (musl)
|
|
run: scripts/dev_cli.sh tests --unit --libc musl
|
|
- name: Load openvswitch module
|
|
run: sudo modprobe openvswitch
|
|
- name: Run integration tests (musl)
|
|
timeout-minutes: 30
|
|
run: scripts/dev_cli.sh tests --integration --libc musl |