skip/justfile
Renovate Bot 4e6846d4da
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 1m8s
Test / build (map[name:stable]) (push) Successful in 1m16s
Release Please / Release-plz (push) Successful in 25s
chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4
2025-01-16 14:26:11 +00:00

21 lines
440 B
Makefile

dist: target-release
if test ! -d dist ; then mkdir dist ; fi
cp target/release/skip dist/
test-in-docker:
docker run --rm -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest cargo test
shell-in-docker:
docker run --rm -it -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest bash
target-release: unittest inttest
cargo build --release
inttest: target-debug
./test.sh
unittest: target-debug
cargo test
target-debug:
cargo build