Skip to content

Commit 33a45d5

Browse files
committed
revert local changes
1 parent 273a2a8 commit 33a45d5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ build-coverage: build_cmd=test -c -covermode=count -coverpkg ./pkg/controller/..
8787
build-coverage: clean $(CMDS)
8888

8989
build-linux: build_cmd=build
90-
build-linux: arch_flags=GOOS=linux GOARCH=amd64
90+
build-linux: arch_flags=GOOS=linux GOARCH=386
9191
build-linux: clean $(CMDS)
9292

9393
build-wait: clean bin/wait
9494

9595
bin/wait: FORCE
96-
GOOS=linux GOARCH=amd64 go build $(MOD_FLAGS) -o $@ $(PKG)/test/e2e/wait
96+
GOOS=linux GOARCH=386 go build $(MOD_FLAGS) -o $@ $(PKG)/test/e2e/wait
9797

98-
build-util-linux: arch_flags=GOOS=linux GOARCH=amd64
98+
build-util-linux: arch_flags=GOOS=linux GOARCH=386
9999
build-util-linux: build-util
100100

101101
build-util: bin/cpb
@@ -140,7 +140,7 @@ FORCE:
140140
# main entry point for running end to end tests. used by .github/workflows/e2e-tests.yml See test/e2e/README.md for details
141141
.PHONY: e2e-local
142142
e2e-local: bin/e2e-local.test test/e2e-local.image.tar
143-
$(GINKGO) -nodes $(or $(NODES),1) -flakeAttempts 1 -randomizeAllSpecs $(if $(TEST),-focus '$(TEST)') -v -timeout 90m $< -- -namespace=operators -olmNamespace=operator-lifecycle-manager -dummyImage=bitnami/nginx:latest -kind.images=../test/e2e-local.image.tar -toolsBin=$(TOOLS_BIN)
143+
$(GINKGO) -nodes $(or $(NODES),1) -flakeAttempts 3 -randomizeAllSpecs $(if $(TEST),-focus '$(TEST)') -v -timeout 90m $< -- -namespace=operators -olmNamespace=operator-lifecycle-manager -dummyImage=bitnami/nginx:latest -kind.images=../test/e2e-local.image.tar
144144

145145
# this target updates the zz_chart.go file with files found in deploy/chart
146146
# this will always fire since it has been marked as phony
@@ -154,7 +154,7 @@ bin/e2e-local.test: FORCE test/e2e/assets/chart/zz_chart.go
154154

155155
# 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
156156
test/e2e-local.image.tar: export GOOS=linux
157-
test/e2e-local.image.tar: export GOARCH=amd64
157+
test/e2e-local.image.tar: export GOARCH=386
158158
test/e2e-local.image.tar: build_cmd=build
159159
test/e2e-local.image.tar: e2e.Dockerfile bin/wait bin/cpb $(CMDS)
160160
docker build -t quay.io/operator-framework/olm:local -f $< bin

test/e2e/util_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import (
4848

4949
const (
5050
pollInterval = 1 * time.Second
51-
pollDuration = 10 * time.Minute
51+
pollDuration = 5 * time.Minute
5252

5353
olmConfigMap = "olm-operators" // No-longer used, how long do we keep this around?
5454

0 commit comments

Comments
 (0)