85 lines
2.1 KiB
YAML
85 lines
2.1 KiB
YAML
name: Build and test on Ubuntu
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths-ignore:
|
|
- ".github/workflows/images-*"
|
|
- ".github/workflows/debian-cache.yml"
|
|
- ".github/workflows/e2e.yml"
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build on Ubuntu
|
|
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-system-x86
|
|
|
|
- name: Bootstrap
|
|
run: ./tools/qemu-ubuntu-img/bootstrap.sh
|
|
|
|
- name: Unit Testing
|
|
run: |
|
|
mkdir ~/.out-of-tree
|
|
go test -parallel 1 -v ./...
|
|
|
|
test-end-to-end-examples:
|
|
name: E2E Testing (Examples)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build
|
|
run: go build
|
|
|
|
- name: Install dependencies for tests
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install qemu-system-x86
|
|
|
|
- name: End-to-End Testing [Kernel Module]
|
|
run: |
|
|
cd examples/kernel-module
|
|
../../out-of-tree --log-level=debug kernel autogen --max=1
|
|
../../out-of-tree --log-level=debug pew --qemu-timeout=10m
|
|
|
|
- name: End-to-End Testing [Kernel Exploit]
|
|
run: |
|
|
cd examples/kernel-exploit
|
|
../../out-of-tree --log-level=debug kernel autogen --max=1
|
|
../../out-of-tree --log-level=debug pew --threshold=0 --qemu-timeout=10m
|
|
|
|
- name: End-to-End Testing [Script]
|
|
run: |
|
|
cd examples/script
|
|
../../out-of-tree --log-level=debug kernel autogen --max=1
|
|
../../out-of-tree --log-level=debug pew --qemu-timeout=10m
|
|
|
|
- name: End-to-End Testing [Preload]
|
|
run: |
|
|
cd examples/preload
|
|
../../out-of-tree --log-level=debug kernel autogen --max=1
|
|
../../out-of-tree --log-level=debug pew --qemu-timeout=10m
|
|
|
|
- name: Archive logs
|
|
if: always()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-end-to-end-examples-logs
|
|
path: /home/runner/.out-of-tree/logs
|