Skip to content

Commit 08679cb

Browse files
authored
chore(local-dev): gitgnore and operator makefile improvements (#2230)
* chore: update gitignore with files created by e2e local test runs * fix(operator): makefile ld flags usage * chore: remove LD_FLAGS from schemas target
1 parent 0bbc1d3 commit 08679cb

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,11 @@ hack/release
3030
*.test
3131

3232
# helm charts dependencies
33-
*.tgz
33+
*.tgz
34+
35+
# test coverage files
36+
cover.out
37+
38+
# e2e test runs locally
39+
e2e/playwright*.tar.gz
40+
e2e/support-bundle*.tar.gz

operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ $(CONTROLLER_GEN): $(LOCALBIN)
126126

127127
.PHONY: schemas
128128
schemas: fmt controller-gen
129-
go build ${LDFLAGS} -o bin/schemagen ./schemagen
129+
go build -o bin/schemagen ./schemagen
130130
./bin/schemagen --output-dir ./schemas
131131

132132
.PHONY: envtest

0 commit comments

Comments
 (0)