]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blob - ci/run
Add build manifests for build.sr.ht
[nsscash/nsscash.git] / ci / run
1 #!/bin/sh
2
3 set -eu
4 set -x
5
6
7 make
8 make test
9
10 test -z "$(git clean -nd)" # any untracked files left?
11 make clean
12 test -z "$(git clean -ndx)" # any unignored files left?
13
14 # Build with clang
15 make      CC=clang
16 make test CC=clang