Skip to content

Commit 7ca97a8

Browse files
authored
set the architecture explicitely (#122)
1 parent 6b73b08 commit 7ca97a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests/run_integration_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ if [ -n "$UPDATE_SNAPSHOTS" ]; then
4040
fi
4141

4242
echo "Building Go binaries"
43-
GOOS=linux go build -ldflags="-s -w" -o bin/hello hello/main.go
44-
GOOS=linux go build -ldflags="-s -w" -o bin/error error/main.go
43+
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o bin/hello hello/main.go
44+
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o bin/error error/main.go
4545

4646
# Generate a random 8-character ID to avoid collisions with other runs
4747
run_id=$(xxd -l 4 -c 4 -p < /dev/random)

0 commit comments

Comments
 (0)