Skip to content

Instantly share code, notes, and snippets.

@Enselic
Last active January 3, 2022 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Enselic/4bbe02584cc405c98592df0938dfd187 to your computer and use it in GitHub Desktop.
Save Enselic/4bbe02584cc405c98592df0938dfd187 to your computer and use it in GitHub Desktop.
bat and syntect ci emulation commands
echo bat ci && cargo fmt -- --check && cargo doc --locked --no-deps --document-private-items --all-features && cargo clippy --all-targets --all-features && cargo check --no-default-features --features minimal-application && cargo test --doc && cargo test && PATH="./target/debug:$PATH" tests/syntax-tests/test_custom_assets.sh && echo ci pass
echo syntax bat ci && cargo build --no-default-features --features minimal-application,build-assets && PATH="./target/debug:$PATH" assets/create.sh && cargo build --release --no-default-features --features minimal-application && PATH="./target/release:$PATH" tests/syntax-tests/regression_test.sh
echo syntect ci && cargo clippy --all-targets --all-features && RUSTDOCFLAGS='--deny warnings' cargo doc --no-deps --document-private-items --all-features && cargo run --example synhtml --no-default-features --features html,assets,dump-load,dump-create,regex-onig -- examples/synhtml.rs && cargo test --all-targets --all-features && cargo test --doc && echo yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment