Skip to content

Commit 8530159

Browse files
authored
makefile: add go arch env variable for integration tests (#126)
* makefile: add go arch env variable for integration tests, no need to change it locally * makefile: the timeout in integration tests
1 parent d579e6c commit 8530159

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@ test: test_unit test_integration
3838
test_unit:
3939
@go test --tags "nonwasmenv" -v `go list ./... | grep -v runtime`
4040

41+
# GOARCH=amd64 is required to run the integration tests in gossamer
4142
test_integration:
42-
@go test --tags="nonwasmenv" -v ./runtime/... -timeout 1500s
43+
@GOARCH=amd64 go test --tags="nonwasmenv" -v ./runtime/... -timeout 2000s

0 commit comments

Comments
 (0)