Skip to content

Add struct validation GDB helper script #128

Add struct validation GDB helper script

Add struct validation GDB helper script #128

Workflow file for this run

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

Check failure on line 40 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 40, Col: 13): Unrecognized named-value: 'linux'. Located at position 1 within expression: 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