-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b92034b
commit f71ebd5
Showing
6 changed files
with
29 additions
and
4 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,3 +1,4 @@ | ||
echo "Checking latex PDFs agree" | ||
DIR="$(mktemp -d)" | ||
cp ../tests/*_in.tex $DIR | ||
cp ../tests/*_out.tex $DIR | ||
|
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,3 +1,4 @@ | ||
echo "Getting performance metrics" | ||
DIR="$(mktemp -d)" | ||
cp ../tests/*_in.* $DIR | ||
cargo build --release | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
default: test latex clippy format prof | ||
|
||
all: default perf | ||
|
||
alias t := test | ||
alias l := latex | ||
alias c := clippy | ||
alias f := format | ||
|
||
test: | ||
@cargo test | ||
|
||
latex: | ||
@cd extra && bash latex.sh | ||
|
||
perf: | ||
@cd extra && bash perf.sh | ||
|
||
prof: | ||
@cd extra && bash prof.sh | ||
|
||
clippy: | ||
@cargo clippy | ||
|
||
format: | ||
@cargo fmt |
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