_scripts: always return exit code 0 when testing on tip (#2980)
So that we can mute failing tests in TeamCity.
This commit is contained in:
parent
5b16ddb7e2
commit
bfb7181e8d
@ -42,4 +42,11 @@ export GOARCH="$ARCH"
|
|||||||
export PATH="$GOROOT/bin:$PATH"
|
export PATH="$GOROOT/bin:$PATH"
|
||||||
go version
|
go version
|
||||||
|
|
||||||
|
set +e
|
||||||
make test
|
make test
|
||||||
|
x=$?
|
||||||
|
if [ "$GOVERSION" = "gotip" ]; then
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
exit $x
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user