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 93bf374 commit 710c885Copy full SHA for 710c885
script/cibuild
@@ -4,9 +4,16 @@ if [ -z "$CORES" ]; then
4
CORES=16
5
fi
6
7
-git clean -f -x
8
-autoconf
9
-./configure --disable-install-doc --prefix=`pwd`/inst
+function Q {
+ if ! "$@" > /tmp/ruby_ci_log; then
+ cat /tmp/ruby_ci_log
10
+ exit 1
11
+ fi
12
+}
13
+
14
+Q git clean -f -x
15
+Q autoconf
16
+Q ./configure --disable-install-doc --prefix=`pwd`/inst
17
make -j $CORES
18
make install
19
make TESTS="-j $CORES" test-all
0 commit comments