From a0ba4aafb76974eb33e54cfdc9363db2f41c8979 Mon Sep 17 00:00:00 2001 From: Kevin Chen Date: Sun, 20 Aug 2023 16:25:02 -0400 Subject: [PATCH] +temporal (#2743) * feat: First stab at Temporal CLI * fix: Depend on make * fix: Fix binary location * fix: Print directories * fix: try without makefile * fix --- projects/temporal.io/package.yml | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 projects/temporal.io/package.yml diff --git a/projects/temporal.io/package.yml b/projects/temporal.io/package.yml new file mode 100644 index 00000000..a06e215c --- /dev/null +++ b/projects/temporal.io/package.yml @@ -0,0 +1,35 @@ +distributable: + url: https://github.com/temporalio/cli/archive/refs/tags/v{{version}}.tar.gz + strip-components: 1 + +versions: + github: temporalio/cli + +provides: + - bin/temporal + +build: + dependencies: + go.dev: ^1.19 + script: | + go mod download + mkdir -p "{{ prefix }}"/bin + go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC ./cmd/temporal + env: + GOPROXY: https://proxy.golang.org,direct + GOSUMDB: sum.golang.org + GO111MODULE: on + CGO_ENABLED: 0 + BUILDLOC: '{{prefix}}/bin/temporal' + LDFLAGS: + - -s + - -w + - -X github.com/temporalio/cli/headers.Version={{version}} + linux: + # or segmentation fault + # fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575 + LDFLAGS: + - -buildmode=pie + +test: + temporal --version | grep {{version}}