X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=ci%2Frun;fp=ci%2Frun;h=72170679799029c698dd42191a87584d9478fc61;hb=e9cde5247dbdf34b9648fa7e755564d74cff8a64;hp=0000000000000000000000000000000000000000;hpb=a8a8f9daebe164d067d004458679dd7e7f0dc087;p=nsscash%2Fnsscash.git diff --git a/ci/run b/ci/run new file mode 100755 index 0000000..7217067 --- /dev/null +++ b/ci/run @@ -0,0 +1,16 @@ +#!/bin/sh + +set -eu +set -x + + +make +make test + +test -z "$(git clean -nd)" # any untracked files left? +make clean +test -z "$(git clean -ndx)" # any unignored files left? + +# Build with clang +make CC=clang +make test CC=clang