-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile with useful repetitive commands (#47)
- Loading branch information
1 parent
b5ddd21
commit df60d07
Showing
4 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/target/ | ||
**/*.rs.bk | ||
perf.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
FAKTORY_HOST=127.0.0.1 | ||
FAKTORY_PORT=7419 | ||
FAKTORY_PORT_UI=7420 | ||
|
||
.PHONY: check | ||
check: | ||
cargo fmt --check | ||
cargo clippy | ||
cargo d --no-deps --all-features | ||
|
||
.PHONY: doc | ||
doc: | ||
RUSTDOCFLAGS='--cfg docsrs' cargo +nightly d --all-features --open | ||
|
||
.PHONY: faktory | ||
faktory: | ||
docker run --rm -d \ | ||
-v faktory-data:/var/lib/faktory \ | ||
-p ${FAKTORY_HOST}:${FAKTORY_PORT}:7419 \ | ||
-p ${FAKTORY_HOST}:${FAKTORY_PORT_UI}:7420 \ | ||
--name faktory \ | ||
contribsys/faktory:latest \ | ||
/faktory -b :7419 -w :7420 | ||
|
||
.PHONY: faktory/kill | ||
faktory/kill: | ||
docker stop faktory | ||
|
||
README.md: README.tpl src/lib.rs | ||
cargo readme > README.md | ||
|
||
.PHONY: test | ||
test: | ||
cargo t --locked --all-features --all-targets | ||
|
||
.PHONY: test/doc | ||
test/doc: | ||
cargo test --locked --all-features --doc | ||
|
||
.PHONY: test/e2e | ||
test/e2e: | ||
FAKTORY_URL=tcp://${FAKTORY_HOST}:${FAKTORY_PORT} cargo test --locked --all-features --all-targets | ||
|
||
.PHONY: test/load | ||
test/load: | ||
cargo run --release --features binaries | ||
|
||
.PHONY: test/perf | ||
test/perf: | ||
CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph -o perf.flamegraph.svg -f binaries -b loadtest | ||
|
||
.PHONY: test/perf/clean | ||
test/perf/clean: | ||
rm perf.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters