summaryrefslogtreecommitdiff
path: root/check
blob: 237df0d91f63467454b73b3b91cca0cde063a4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
#
# Run automated tests for the project.

set -euo pipefail

quiet=-q
hideok=
offline=

if command -v chronic >/dev/null; then
	hideok=chronic
fi

while [ "$#" -gt 0 ]; do
	case "$1" in
	-v | --verbose)
		quiet=
		hideok=
		shift
		;;
	--offline)
		offline=--offline
		shift
		;;
	esac
done

got_cargo_cmd() {
	cargo --list | grep " $1 " >/dev/null
}

# shellcheck disable=2086
cargo build $offline --all-targets $quiet

# shellcheck disable=2086
got_cargo_cmd clippy && cargo clippy $offline $quiet
got_cargo_cmd fmt && cargo fmt -- --check

subplot docgen summain.subplot -o summain.html

subplot codegen summain.subplot -o test.py
rm -f test.log
if ! $hideok python3 test.py --log test.log "$@"; then
	tail -n500 test.log
	exit 1
fi

echo "Everything seems to be in order."