racket/.github/scripts/test.sh
Paulo Matos 45fefb214d Add further tests to CI (#27)
original commit: 6627417c0a5737cfb0d04d3ce13f52191c15c78f
2020-07-13 15:22:21 +02:00

21 lines
448 B
Bash
Executable File

#!/bin/bash
runmats() {
echo make allxhelp "$@"
make -C ${MACH}/mats allxhelp "$@" 2>&1 | tee -a Make.out | grep '^matting '
}
# Split these out so that we get output every 10 minutes on Windows builds.
runmats o=0
runmats o=0 cp0=t
runmats o=3
runmats o=3 cp0=t
runmats o=3 cp0=t eval=interpret
if [ -f ${MACH}/mats/summary ]; then
cat ${MACH}/mats/summary
diff -q .github/scripts/summary ${MACH}/mats/summary
exit $?
else
exit 1
fi