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.
1 parent 1f1bb78 commit 5a8db10Copy full SHA for 5a8db10
ci/ci.sh
@@ -83,7 +83,20 @@ esac
83
--host="$HOST" $EXTRAFLAGS
84
85
# We have set "-j<n>" in MAKEFLAGS.
86
-make
+build_exit_code=0
87
+make > make.log 2>&1 || build_exit_code=$?
88
+cat make.log
89
+if [ $build_exit_code -ne 0 ]; then
90
+ case $CC in
91
+ *snapshot*)
92
+ grep -e "internal compiler error:" -e "PLEASE submit a bug report" make.log
93
+ return $?;
94
+ ;;
95
+ *)
96
+ return 1;
97
98
+ esac
99
+fi
100
101
# Print information about binaries so that we can see that the architecture is correct
102
file *tests* || true
0 commit comments