Add struct validation GDB helper script #128
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: [push, pull_request] | ||
jobs: | ||
build_and_test: | ||
name: "${{ matrix.name }}" | ||
runs-on: "${{ matrix.image_name }}" | ||
strategy: | ||
matrix: | ||
include: | ||
- name: "macOS" | ||
image_name: "macOS-latest" | ||
- name: "Windows" | ||
image_name: "windows-2022" | ||
- name: "Linux (default features)" | ||
image_name: "ubuntu-22.04" | ||
- name: "Linux (all features)" | ||
image_name: "ubuntu-22.04" | ||
extra_args: "--all-features" | ||
- name: "Linux (minimal)" | ||
image_name: "ubuntu-22.04" | ||
extra_args: "--no-default-features" | ||
- name: "Linux (decoder only)" | ||
image_name: "ubuntu-22.04" | ||
extra_args: "--no-default-features --features full-decoder" | ||
- name: "Linux (encoder)" | ||
image_name: "ubuntu-22.04" | ||
extra_args: "--features encoder" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: { submodules: recursive } | ||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
- name: Build | ||
run: cargo build --all ${{ matrix.extra_args }} | ||
- name: Validate FFI structs | ||
if: linux | ||
run: | | ||
set -eu | ||
gdb -q target/debug/examples/pattern \ | ||
-batch -ex 'source validate-structs.py' \ | ||
1>script-out.txt 2>gdb-stderr.txt | ||
if [[ $(cat ./script-out.txt) != *"ALL STRUCTS OK"* ]]; then | ||
echo >&2 "ERROR: struct validation failed!" | ||
echo >&2 "================================" | ||
cat >&2 ./gdb-stderr.txt | ||
echo >&2 "================================" | ||
cat >&2 ./script-out.txt | ||
exit 1 | ||
fi | ||
- name: Test | ||
run: cargo test ${{ matrix.extra_args }} | ||
check_rustfmt: | ||
name: "rustfmt" | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: { submodules: recursive } | ||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
- name: Check rustfmt | ||
run: cargo fmt -- --check |