*: Fix ppc64le test runs (#3460)

We must pass the build tag through during the 'vet' check, and
additionally there was some extra commands at the end of test_linux.sh
that were not necessary.
This commit is contained in:
Derek Parker 2023-08-11 08:51:28 -07:00 committed by GitHub
parent caf6df0eb9
commit e49c81cc5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 10 deletions

@ -19,7 +19,7 @@ test: vet
@go run _scripts/make.go test -v @go run _scripts/make.go test -v
vet: vet:
@go vet $$(go list ./... | grep -v native) @go vet -tags exp.linuxppc64le $$(go list -tags exp.linuxppc64le ./... | grep -v native)
test-proc-run: test-proc-run:
@go run _scripts/make.go test -s proc -r $(RUN) @go run _scripts/make.go test -s proc -r $(RUN)

@ -75,12 +75,3 @@ if [ "$version" = "gotip" ]; then
else else
exit $x exit $x
fi fi
export GOARCH=ppc64le
go run _scripts/make.go --tags exp.linuxppc64le
x=$?
if [ "$version" = "gotip" ]; then
exit 0
else
exit $x
fi