raptorq/Makefile
Pavel 02c80b595a
Added wasm build configuration (#136)
Co-authored-by: Christopher Berner <christopherberner@gmail.com>
2022-10-08 21:08:55 -07:00

43 lines
891 B
Makefile

build: pre
cargo build
pre:
cargo deny check licenses
cargo fmt --all -- --check
cargo clippy --all
release: pre
cargo build --release
test: pre
cargo build --features benchmarking,python,serde_support
cargo test --features benchmarking
test_extended: pre
RUSTFLAGS="-C opt-level=3" nice cargo test --features benchmarking -- --ignored --nocapture
bench: pre
cargo bench --features benchmarking
profile:
RUSTFLAGS='-Cforce-frame-pointers' cargo bench --no-run --features benchmarking
build_py: pre
maturin build
release_py: pre
maturin build --release
publish_py: test_py
docker pull quay.io/pypa/manylinux2014_x86_64
docker run -it --rm -v $(shell pwd):/raptorq quay.io/pypa/manylinux2014_x86_64 /raptorq/py_publish.sh
install_py: pre
maturin develop
test_py: install_py
python3 -m unittest discover
build_wasm: pre
wasm-pack build --target web --features wasm