GitHub Actions: split jobs, add end-to-end testing
This commit is contained in:
parent
c1a3cb6ce5
commit
f4a8b75244
41
.github/workflows/ubuntu.yml
vendored
41
.github/workflows/ubuntu.yml
vendored
@ -4,6 +4,33 @@ on: [push]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: go build
|
||||||
|
|
||||||
|
test-unit:
|
||||||
|
name: Unit Testing
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Install dependencies for tests
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install qemu
|
||||||
|
|
||||||
|
- name: Bootstrap
|
||||||
|
run: ./tools/qemu-debian-img/bootstrap.sh
|
||||||
|
|
||||||
|
- name: Unit Testing
|
||||||
|
run: go test -parallel 1 -v ./...
|
||||||
|
|
||||||
|
test-end-to-end:
|
||||||
|
name: End-to-End Testing
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
@ -16,8 +43,14 @@ jobs:
|
|||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install qemu
|
sudo apt-get install qemu
|
||||||
|
|
||||||
- name: Bootstrap
|
- name: End-to-End Testing [Kernel Module]
|
||||||
run: ./tools/qemu-debian-img/bootstrap.sh
|
run: |
|
||||||
|
cd examples/kernel-module
|
||||||
|
../../out-of-tree kernel autogen --max=1
|
||||||
|
../../out-of-tree pew --qemu-timeout=10m
|
||||||
|
|
||||||
- name: Test
|
- name: End-to-End Testing [Kernel Exploit]
|
||||||
run: go test -parallel 1 -v ./...
|
run: |
|
||||||
|
cd examples/kernel-exploit
|
||||||
|
../../out-of-tree kernel autogen --max=1
|
||||||
|
../../out-of-tree pew --threshold=0 --qemu-timeout=10m
|
||||||
|
Loading…
Reference in New Issue
Block a user