_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:
Alessandro Arzilli 2022-04-27 18:10:23 +02:00 committed by GitHub
parent 5b16ddb7e2
commit bfb7181e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,4 +42,11 @@ export GOARCH="$ARCH"
export PATH="$GOROOT/bin:$PATH"
go version
set +e
make test
x=$?
if [ "$GOVERSION" = "gotip" ]; then
exit 0
else
exit $x
fi