You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ci/cirrus.sh
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,22 +21,27 @@ valgrind --version || true
21
21
--with-valgrind="$WITH_VALGRIND" \
22
22
--host="$HOST"$EXTRAFLAGS
23
23
24
+
make -j2
25
+
26
+
# Print information about binaries so that we can see that the architecture is correct
27
+
file *tests ||true
28
+
file bench_*||true
29
+
file .libs/*||true
30
+
24
31
if [ -n"$BUILD" ]
25
32
then
26
33
make -j2 "$BUILD"
27
34
fi
28
35
29
36
if [ "$RUN_VALGRIND"="yes" ]
30
37
then
31
-
make -j2
32
38
# the `--error-exitcode` is required to make the test fail if valgrind found errors, otherwise it'll return 0 (https://www.valgrind.org/docs/manual/manual-core.html)
0 commit comments