Skip to content

Commit

Permalink
Fix ci-mgmt: remove unread field enableAutoRelease from `.ci-mgmt.y…
Browse files Browse the repository at this point in the history
…aml` (#142)

* Remove unread field in .ci-mgmt.yaml

* Update workflows
  • Loading branch information
iwahbe authored Nov 18, 2024
1 parent 5ced739 commit 3b3caf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .ci-mgmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,5 @@ publish:
# Disables a pulumi-internal-only step for running create_docs_build during the release
publishRegistry: false

# Disables the pulumi-internal mechanism for auto-releasing after merging PRs with special labels.
enableAutoRelease: false

# For additional options, please refer to the defaults set in ci-mgmt:
# https://github.com/pulumi/ci-mgmt/blob/master/provider-ci/internal/pkg/templates/defaults.config.yaml
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ PROVIDER_VERSION ?= 1.0.0-alpha.0+dev
# Use this normalised version everywhere rather than the raw input to ensure consistency.
VERSION_GENERIC = $(shell pulumictl convert-version --language generic --version "$(PROVIDER_VERSION)")

# Strips debug information from the provider binary to reduce its size and speed up builds
LDFLAGS_STRIP_SYMBOLS=-s -w
LDFLAGS_PROJ_VERSION=-X $(PROJECT)/$(VERSION_PATH)=$(VERSION_GENERIC)
LDFLAGS_UPSTREAM_VERSION=
LDFLAGS_EXTRAS=
LDFLAGS=$(LDFLAGS_PROJ_VERSION) $(LDFLAGS_UPSTREAM_VERSION) $(LDFLAGS_EXTRAS)
LDFLAGS=$(LDFLAGS_PROJ_VERSION) $(LDFLAGS_UPSTREAM_VERSION) $(LDFLAGS_EXTRAS) $(LDFLAGS_STRIP_SYMBOLS)

development: install_plugins provider build_sdks install_sdks

Expand Down

0 comments on commit 3b3caf5

Please sign in to comment.