133 lines
3.9 KiB
YAML
133 lines
3.9 KiB
YAML
name: Ubuntu
|
|
|
|
on: [push, 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: 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
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-end-to-end-examples-logs
|
|
path: /home/runner/.out-of-tree/logs
|
|
|
|
test-end-to-end:
|
|
name: E2E Testing
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [
|
|
{ distro: Ubuntu, release: 12.04 },
|
|
{ distro: Ubuntu, release: 14.04 },
|
|
{ distro: Ubuntu, release: 16.04 },
|
|
{ distro: Ubuntu, release: 18.04 },
|
|
{ distro: Ubuntu, release: 20.04 },
|
|
{ distro: Ubuntu, release: 22.04 },
|
|
{ distro: CentOS, release: 6 },
|
|
{ distro: CentOS, release: 7 },
|
|
{ distro: CentOS, release: 8 },
|
|
{ distro: OracleLinux, release: 6 },
|
|
{ distro: OracleLinux, release: 7 },
|
|
{ distro: OracleLinux, release: 8 },
|
|
{ distro: OracleLinux, release: 9 }
|
|
]
|
|
|
|
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 [${{ matrix.os.distro }} ${{ matrix.os.release }}]
|
|
run: |
|
|
mkdir test
|
|
cd test
|
|
|
|
echo 'name = "out-of-tree script"' >> .out-of-tree.toml
|
|
echo 'type = "script"' >> .out-of-tree.toml
|
|
echo 'script = "script.sh"' >> .out-of-tree.toml
|
|
echo '[[supported_kernels]]' >> .out-of-tree.toml
|
|
echo 'distro_type = "${{ matrix.os.distro }}"' >> .out-of-tree.toml
|
|
echo 'distro_release = "${{ matrix.os.release }}"' >> .out-of-tree.toml
|
|
echo 'release_mask = ".*"' >> .out-of-tree.toml
|
|
|
|
echo -e '#!/bin/sh\necho ok' >> script.sh
|
|
|
|
../out-of-tree --log-level=debug kernel list-remote --distro=${{ matrix.os.distro }} --ver=${{ matrix.os.release }}
|
|
../out-of-tree --log-level=debug kernel autogen --max=1 --shuffle
|
|
../out-of-tree --log-level=debug pew --qemu-timeout=10m
|
|
|
|
- name: Archive logs
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-end-to-end-${{ matrix.os.distro }}-${{ matrix.os.release }}-logs
|
|
path: /home/runner/.out-of-tree/logs
|