]> Cypherpunks.ru repositories - gostls13.git/commitdiff
[dev.cc] build: disable API check until all systems build
authorRuss Cox <rsc@golang.org>
Tue, 11 Nov 2014 22:06:41 +0000 (17:06 -0500)
committerRuss Cox <rsc@golang.org>
Tue, 11 Nov 2014 22:06:41 +0000 (17:06 -0500)
Otherwise no system will get an 'ok' until they all do.

LGTM=r, dave
R=r, dave
CC=austin, dvyukov, golang-codereviews, iant, khr
https://golang.org/cl/170320044

src/run.bash

index 3c9430c87e97ae018a120d7df8f28b7eca1a5460..d9b985fd15350e3ad49077cea6199442a31ccf4e 100755 (executable)
@@ -243,8 +243,8 @@ rm -f runtest
 [ "$GOOS" == nacl ] ||
 (
 echo
-echo '# Checking API compatibility.'
-time go run $GOROOT/src/cmd/api/run.go || exit 1
+echo '# SKIPPING API CHECK UNTIL ALL SYSTEMS BUILD.'
+time go run $GOROOT/src/cmd/api/run.go || exit 1
 ) || exit $?
 
 echo