Skip to content

Commit 3b3caf5

Browse files
authored
Fix ci-mgmt: remove unread field enableAutoRelease from .ci-mgmt.yaml (#142)
* Remove unread field in .ci-mgmt.yaml * Update workflows
1 parent 5ced739 commit 3b3caf5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.ci-mgmt.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,5 @@ publish:
4848
# Disables a pulumi-internal-only step for running create_docs_build during the release
4949
publishRegistry: false
5050

51-
# Disables the pulumi-internal mechanism for auto-releasing after merging PRs with special labels.
52-
enableAutoRelease: false
53-
5451
# For additional options, please refer to the defaults set in ci-mgmt:
5552
# https://github.com/pulumi/ci-mgmt/blob/master/provider-ci/internal/pkg/templates/defaults.config.yaml

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ PROVIDER_VERSION ?= 1.0.0-alpha.0+dev
2020
# Use this normalised version everywhere rather than the raw input to ensure consistency.
2121
VERSION_GENERIC = $(shell pulumictl convert-version --language generic --version "$(PROVIDER_VERSION)")
2222

23+
# Strips debug information from the provider binary to reduce its size and speed up builds
24+
LDFLAGS_STRIP_SYMBOLS=-s -w
2325
LDFLAGS_PROJ_VERSION=-X $(PROJECT)/$(VERSION_PATH)=$(VERSION_GENERIC)
2426
LDFLAGS_UPSTREAM_VERSION=
2527
LDFLAGS_EXTRAS=
26-
LDFLAGS=$(LDFLAGS_PROJ_VERSION) $(LDFLAGS_UPSTREAM_VERSION) $(LDFLAGS_EXTRAS)
28+
LDFLAGS=$(LDFLAGS_PROJ_VERSION) $(LDFLAGS_UPSTREAM_VERSION) $(LDFLAGS_EXTRAS) $(LDFLAGS_STRIP_SYMBOLS)
2729

2830
development: install_plugins provider build_sdks install_sdks
2931

0 commit comments

Comments
 (0)