Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version number in dist package #1309

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ TESTPARALLELISM := 10
PACK := awsx
PROVIDER := pulumi-resource-${PACK}
CODEGEN := pulumi-gen-${PACK}
GZIP_PREFIX := pulumi-resource-${PACK}-v${VERSION_GENERIC}
BIN := ${PROVIDER}

JAVA_GEN := pulumi-java-gen
Expand All @@ -31,6 +30,8 @@ PROVIDER_VERSION ?= 2.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)")

GZIP_PREFIX := pulumi-resource-${PACK}-v${VERSION_GENERIC}

# Pre-requisites: ensure these folders exist
_ := $(shell mkdir -p .make bin dist)

Expand Down Expand Up @@ -189,7 +190,9 @@ istanbul_tests::
test_nodejs:: PATH := $(WORKING_DIR)/bin:$(PATH)
test_nodejs:: bin/${PROVIDER} install_nodejs_sdk bin/gotestfmt
@export PATH
cd provider && go test -tags=nodejs -v -json -count=1 -cover -timeout 3h -parallel ${TESTPARALLELISM} . 2>&1 | tee /tmp/gotest.log | gotestfmt
# Temporarily skipping upgrade tests due to broken release. This should be reverted after the next release passes
# See: https://github.com/pulumi/pulumi-awsx/issues/1308
# cd provider && go test -tags=nodejs -v -json -count=1 -cover -timeout 3h -parallel ${TESTPARALLELISM} . 2>&1 | tee /tmp/gotest.log | gotestfmt
cd examples && go test -tags=nodejs -v -json -count=1 -cover -timeout 3h -parallel ${TESTPARALLELISM} . 2>&1 | tee /tmp/gotest.log | gotestfmt

test_python:: PATH := $(WORKING_DIR)/bin:$(PATH)
Expand Down
Loading