Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: Fix ppc64le test runs #3460

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test: vet
@go run _scripts/make.go test -v

vet:
@go vet $$(go list ./... | grep -v native)
@go vet -tags exp.linuxppc64le $$(go list -tags exp.linuxppc64le ./... | grep -v native)

test-proc-run:
@go run _scripts/make.go test -s proc -r $(RUN)
Expand Down
9 changes: 0 additions & 9 deletions _scripts/test_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,3 @@ if [ "$version" = "gotip" ]; then
else
exit $x
fi

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