From 81cd4f3809ac32afd1f156dff1e7fbe4b1ad84c5 Mon Sep 17 00:00:00 2001 From: Kevin Chen Date: Thu, 14 Sep 2023 14:06:07 -0400 Subject: [PATCH] +genqlient -- CLI to generate type-safe Go GraphQL client --- .../khanacademy.org/genqlient/package.yml | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 projects/khanacademy.org/genqlient/package.yml diff --git a/projects/khanacademy.org/genqlient/package.yml b/projects/khanacademy.org/genqlient/package.yml new file mode 100644 index 00000000..7d10c418 --- /dev/null +++ b/projects/khanacademy.org/genqlient/package.yml @@ -0,0 +1,35 @@ +distributable: + url: https://github.com/Khan/genqlient/archive/refs/tags/v{{version}}.tar.gz + strip-components: 1 + +versions: + github: Khan/genqlient + +provides: + - bin/genqlient + +build: + dependencies: + go.dev: ^1.18 + script: | + go mod download + mkdir -p "{{ prefix }}"/bin + go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC . + env: + GOPROXY: https://proxy.golang.org,direct + GOSUMDB: sum.golang.org + GO111MODULE: on + CGO_ENABLED: 0 + BUILDLOC: '{{prefix}}/bin/genqlient' + LDFLAGS: + - -s + - -w + linux: + # or segmentation fault + # fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575 + LDFLAGS: + - -buildmode=pie + +test: + script: + - genqlient --help