summaryrefslogtreecommitdiff
path: root/check
blob: 55b91580e42510931f060d8668234caeb8de97fb (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
#!/bin/sh

set -eu

verbose=false
if [ "$#" -gt 0 ]
then
    case "$1" in
	verbose | -v | --verbose)
	    verbose=true
	    shift
	    ;;
    esac
fi

hideok=

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

if $verbose
then
    hideok=
fi

$hideok cargo check --all-targets
cargo clippy -q
$hideok cargo build --all-targets
$hideok cargo test

$hideok cargo fmt -- --check
$hideok find . -type f -name '*.py' ! -name test.py -exec black --check '{}' +

$hideok sp-docgen jt.md --output jt.html
$hideok sp-docgen jt.md --output jt.pdf

$hideok sp-codegen jt.md --output test.py
rm -f test.log
$hideok python3 test.py --log test.log "$@"

echo "Everything seems to be in order."