chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

33
vendor/rusticata-macros/.travis.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
language: rust
sudo: false
matrix:
include:
- rust: stable
env:
- NAME="stable"
- FEATURES=''
- rust: stable
env:
- NAME="stable,clippy"
- FEATURES=''
- CLIPPY=yes
- rust: stable
env:
- NAME="stable,fmt"
- FEATURES=''
- RUSTFMT=yes
- rust: nightly
env:
- NAME="nightly"
- FEATURES=''
- BENCH=1
before_script:
- ([ "$CLIPPY" != yes ] || rustup component add clippy)
- ([ "$RUSTFMT" != yes ] || rustup component add rustfmt)
script:
- ([ "$CLIPPY" != yes ] || cargo clippy --all-features -- -D clippy::all)
- ([ "$RUSTFMT" != yes ] || cargo fmt --all -- --check)
- |
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
([ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES")