qmonnet / rbpf

Rust virtual machine and JIT compiler for eBPF programs
Apache License 2.0
922 stars 235 forks source link

Cargo.toml: Disable debug assertions for tests; Misc CI updates #78

Closed qmonnet closed 1 year ago

qmonnet commented 1 year ago

Recent versions of the toolchain introduced an assert to panic on unaligned pointer dereferences. We do have some unaligned accesses in our test suite, and rbpf has been supporting them so far.

As a quick fix, disable debug assertions in the tests. We want to re-enable them as soon as possible, once we have a solution to avoid these panics.

Subsequent commit is unrelated, but also attempts to help with the CI by disabling fail-fast, enabling concurrency on the GitHub Workflow.