From dc1ba98390d5091a962bb24131b3c72e313fb4c6 Mon Sep 17 00:00:00 2001 From: Bryce Lampe Date: Thu, 25 Apr 2024 19:08:49 -0700 Subject: [PATCH] Fix weekly-pulumi-update (#50) Example https://github.com/pulumi/pulumi-docker-build/pull/49 Fixes https://github.com/pulumi/pulumi-docker-build/issues/7 Refs https://github.com/pulumi/ci-mgmt/pull/901 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index a886e7e..6256f7e 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,9 @@ tidy: .PHONY: provider provider: bin/${PROVIDER} bin/pulumi-gen-${PACK} # Required by CI +.PHONY: local_generate +local_generate: sdk # Required by CI + provider_debug:: (cd provider && go build -o $(WORKING_DIR)/bin/${PROVIDER} -gcflags="all=-N -l" -ldflags "-X ${PROJECT}/${VERSION_PATH}=${VERSION}" $(PROJECT)/${PROVIDER_PATH}/cmd/$(PROVIDER))