mirror of https://github.com/pulumi/pulumi.git
61 lines
1.9 KiB
Makefile
61 lines
1.9 KiB
Makefile
PROJECT_NAME := Pulumi Go SDK
|
|
LANGHOST_PKG := github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3
|
|
VERSION := $(if ${PULUMI_VERSION},${PULUMI_VERSION},$(shell ../../scripts/pulumi-version.sh go))
|
|
TEST_FAST_PKGS := $(shell go list ./pulumi/... ./common/... | grep -v /vendor/ | grep -v templates)
|
|
TEST_AUTO_PKGS := $(shell go list ./auto/... | grep -v /vendor/ | grep -v templates)
|
|
|
|
ifeq ($(DEBUG),"true")
|
|
$(info VERSION = $(VERSION))
|
|
endif
|
|
|
|
include ../../build/common.mk
|
|
|
|
# Motivation: running `make TEST_ALL_DEPS= test_all` permits running
|
|
# `test_all` without the dependencies.
|
|
TEST_ALL_DEPS ?= install
|
|
|
|
gen::
|
|
go generate ./pulumi/...
|
|
|
|
ensure: go.ensure
|
|
|
|
build:: gen
|
|
go install -C pulumi-language-go \
|
|
-ldflags "-X github.com/pulumi/pulumi/sdk/v3/go/common/version.Version=${VERSION}" ${LANGHOST_PKG}
|
|
|
|
install_plugin::
|
|
GOBIN=$(PULUMI_BIN) go install -C pulumi-language-go \
|
|
-ldflags "-X github.com/pulumi/pulumi/sdk/v3/go/common/version.Version=${VERSION}" ${LANGHOST_PKG}
|
|
|
|
install:: install_plugin
|
|
|
|
test_all:: test_fast test_auto
|
|
|
|
test_fast:: $(TEST_ALL_DEPS)
|
|
@$(GO_TEST_FAST) $(TEST_FAST_PKGS)
|
|
|
|
@cd pulumi-language-go && \
|
|
$(GO_TEST_FAST) $(shell cd pulumi-language-go && go list ./... | grep -v /vendor/ | grep -v templates)
|
|
|
|
test_auto:: $(TEST_ALL_DEPS)
|
|
@$(GO_TEST) $(TEST_AUTO_PKGS)
|
|
|
|
dist::
|
|
go install -C pulumi-language-go \
|
|
-ldflags "-X github.com/pulumi/pulumi/sdk/v3/go/common/version.Version=${VERSION}" ${LANGHOST_PKG}
|
|
|
|
brew:: BREW_VERSION := $(shell ../../scripts/get-version HEAD)
|
|
brew::
|
|
go install -C pulumi-language-go \
|
|
-ldflags "-X github.com/pulumi/pulumi/sdk/v3/go/common/version.Version=${BREW_VERSION}" ${LANGHOST_PKG}
|
|
|
|
lint:: golangci-lint.ensure
|
|
cd .. && golangci-lint run -c ../.golangci.yml --timeout 5m --path-prefix ..
|
|
|
|
cd pulumi-language-go && \
|
|
golangci-lint run -c ../../../.golangci.yml --timeout 5m --path-prefix pulumi-language-go
|
|
|
|
publish:
|
|
git tag sdk/v${VERSION}
|
|
git push origin sdk/v${VERSION}
|