21 lines
448 B
Bash
Executable File
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
|