Skip to content

Commit

Permalink
generate fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamero authored Oct 28, 2024
1 parent c71a6f2 commit f83e21a
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
.PHONY: all
all: go-generate build generate-integrations
all: build generate-integrations


.PHONY: go-generate
go-generate:
rm -r ./pkg/deployments/deployTypes; \
rm -r ./pkg/workflows/workflows; \
rm -r ./pkg/addons/addons; \
GO111MODULE=on go generate ./pkg/workflows/...; \

.PHONY: test
test: run-unit-tests run-e2e-tests-local

Expand All @@ -18,7 +11,7 @@ run-unit-tests:

#TODO: add more e2e tests to the local testing
.PHONY: run-e2e-tests-local
run-e2e-tests-local: go-generate build
run-e2e-tests-local: build
test/check_info_schema.sh;

.PHONY: generate-integrations
Expand All @@ -32,7 +25,7 @@ build:
GO111MODULE=on go build -v -o .

.PHONY: build-all
build-all: go-generate build-windows-amd64 build-linux-amd64 build-linux-arm64 build-darwin-amd64 build-darwin-arm64
build-all: build-windows-amd64 build-linux-amd64 build-linux-arm64 build-darwin-amd64 build-darwin-arm64

.PHONY: build-windows-amd64
build-windows-amd64:
Expand Down

0 comments on commit f83e21a

Please sign in to comment.