Skip to content

Commit b70e300

Browse files
perdasilvaPer Goncalves da Silva
and
Per Goncalves da Silva
authored
Make amd64 the default GOARCH (#3221)
Signed-off-by: Per Goncalves da Silva <[email protected]> Co-authored-by: Per Goncalves da Silva <[email protected]>
1 parent 3669b33 commit b70e300

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ GIT_COMMIT := $(shell git rev-parse HEAD)
3131
ifeq ($(shell arch), arm64)
3232
ARCH := arm64
3333
else
34-
ARCH := 386
34+
ARCH := amd64
3535
endif
3636
# Phony prerequisite for targets that rely on the go build cache to determine staleness.
3737
.PHONY: build test clean vendor \
@@ -152,7 +152,7 @@ bin/e2e-local.test: FORCE test/e2e/assets/chart/zz_chart.go
152152

153153
# set go env and other vars, ensure that the dockerfile exists, and then build wait, cpb, and other command binaries and finally the kind image archive
154154
test/e2e-local.image.tar: export GOOS=linux
155-
test/e2e-local.image.tar: export GOARCH=386
155+
test/e2e-local.image.tar: export GOARCH=amd64
156156
test/e2e-local.image.tar: build_cmd=build
157157
test/e2e-local.image.tar: e2e.Dockerfile bin/wait bin/cpb $(CMDS)
158158
docker build -t quay.io/operator-framework/olm:local -f $< bin

0 commit comments

Comments
 (0)