Skip to content

Commit fc10b92

Browse files
tmshortci-robot
authored andcommitted
UPSTREAM: <carry>: Remove bindata generation from build
Using go-bindata is causing problems with ART builds. This removes the use of go-bindata from the builds. This will subsequently require that users MANUALLY run the `bindata` target to refresh the bindata, or use the `build-update` target. This is a quickfix to put out the fire. Signed-off-by: Todd Short <[email protected]>
1 parent bd1e71d commit fc10b92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openshift/tests-extension/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pkg/bindata/catalog/catalog.go: $(shell find testdata/catalog -type f)
8484
# It prevents various FIPS compliance policies from being applied to this compilation.
8585
# Do not set globally.
8686
.PHONY: build
87-
build: bindata #HELP Build the extended tests binary
87+
build: #HELP Build the extended tests binary
8888
@mkdir -p $(TOOLS_BIN_DIR)
8989
GO_COMPLIANCE_POLICY="exempt_all" go build -ldflags "$(LDFLAGS)" -mod=vendor -o $(TOOLS_BIN_DIR)/olmv1-tests-ext ./cmd/...
9090

@@ -125,7 +125,7 @@ update-metadata: #HELP Build and run 'update-metadata' to generate test metadata
125125
# This will regenerate the metadata without the test entry.
126126
#────────────────────────────────────────────────────────────────────
127127
.PHONY: build-update
128-
build-update: build update-metadata #HELP Build and update metadata and sanitize output
128+
build-update: bindata build update-metadata #HELP Build and update metadata and sanitize output
129129

130130
#SECTION Metadata
131131

0 commit comments

Comments
 (0)