mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
build: Add GitHub action for SGX integration tests
Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@intel.com>
This commit is contained in:
parent
7d305c5bbf
commit
4fb86e9915
22
.github/workflows/integration-sgx.yaml
vendored
Normal file
22
.github/workflows/integration-sgx.yaml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: Cloud Hypervisor Tests (SGX)
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.event_name == 'push'
|
||||
name: Tests (SGX)
|
||||
runs-on: jammy-sgx
|
||||
steps:
|
||||
- name: Code checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Run SGX integration tests
|
||||
timeout-minutes: 10
|
||||
run: scripts/dev_cli.sh tests --integration-sgx
|
||||
- name: Run SGX integration tests for musl
|
||||
timeout-minutes: 10
|
||||
run: scripts/dev_cli.sh tests --integration-sgx --libc musl
|
Loading…
Reference in New Issue
Block a user