Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit d923f06

Browse files
maxdaypeterdeme
authored andcommitted
set the architecture explicitely (DataDog#122)
1 parent 5dfcb1a commit d923f06

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)