We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make precomp
1 parent 07400a8 commit aa4de90Copy full SHA for aa4de90
ci/cirrus.sh
@@ -52,7 +52,19 @@ then
52
$EXEC ./bench
53
} >> bench.log 2>&1
54
fi
55
+
56
if [ "$CTIMETEST" = "yes" ]
57
then
58
./libtool --mode=execute valgrind --error-exitcode=42 ./valgrind_ctime_test > valgrind_ctime_test.log 2>&1
59
60
61
+# Rebuild precomputed files (if not cross-compiling).
62
+if [ -z "$HOST" ]
63
+then
64
+ make clean-precomp
65
+ make precomp
66
+fi
67
68
+# Check that no repo files have been modified by the build.
69
+# (This fails for example if the precomp files need to be updated in the repo.)
70
+git diff --exit-code
0 commit comments