Skip to content

Dev/ci

Dev/ci #486

Workflow file for this run

name: Example execution
on:
pull_request:
push:
branches: [main]
jobs:
run-example:
name: Run hypervisor with example ${{ matrix.example }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
example:
- hello_part
- fuel_tank
- ping
- dev_random
- ping_queue
- redirect_stdio
env:
DURATION: 10s
RUST_LOG: trace
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v15
with:
name: dlr-ft
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-${{ github.job }}-${{ matrix.example }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check CGroup
run: systemd-run --user --scope cat /proc/self/cgroup
- name: Run example ${{ matrix.example }}
id: run_step
shell: nix develop --command bash -e {0}
run: systemd-run-example-${{ matrix.example }} --duration $DURATION 2>&1 | tee ./output.log
- name: Verify output
run: |
! grep "ERROR" ./output.log || false
! grep "panic" ./output.log || false
if [ "${{ matrix.example }}" = "hello_part" ]; then
! grep "WARN" ./output.log || false
grep "Received via Sampling Port: CustomMessage" ./output.log ||
{ printf "no custom message received"; exit 1; }
fi
if [ "${{ matrix.example }}" = "fuel_tank" ]; then
! grep "WARN" ./output.log || false
fi
if [ "${{ matrix.example }}" = "ping" ]; then
grep "received valid response" ./output.log ||
{ printf "no valid response received"; exit 1; }
fi
if [ "${{ matrix.example }}" = "dev_random" ]; then
! grep "WARN" ./output.log || false
grep "got some randomness" ./output.log ||
{ printf "missing randomness log info"; exit 1; }
fi
if [ "${{ matrix.example }}" = "ping_queue" ]; then
grep "received valid response" ./output.log ||
{ printf "no valid response received"; exit 1; }
fi
if [ "${{ matrix.example }}" = "redirect_stdio" ]; then
! grep "WARN" ./output.log || false
grep "Terminating partition" ./output.log ||
{ printf "partition didn't terminate as expected"; exit 1; }
fi