*: 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:
parent
caf6df0eb9
commit
e49c81cc5d
2
Makefile
2
Makefile
@ -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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user