mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
parent
334ac308d1
commit
04795f10d1
38
projects/wundergraph.com/package.yml
Normal file
38
projects/wundergraph.com/package.yml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/wundergraph/wundergraph/archive/refs/tags/v{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: wundergraph/wundergraph
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/wunderctl
|
||||||
|
|
||||||
|
build:
|
||||||
|
script:
|
||||||
|
- go mod download
|
||||||
|
- go build $ARGS -ldflags="$LDFLAGS" ./cmd/wunderctl
|
||||||
|
dependencies:
|
||||||
|
go.dev: ^1.20
|
||||||
|
env:
|
||||||
|
GO111MODULE: on
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
ARGS:
|
||||||
|
- -v
|
||||||
|
- -trimpath
|
||||||
|
- -o "{{prefix}}"/bin/wunderctl
|
||||||
|
LDFLAGS:
|
||||||
|
- -s
|
||||||
|
- -w
|
||||||
|
- -X 'main.commit={{version}}'
|
||||||
|
- -X 'main.builtBy=dev'
|
||||||
|
- -X 'main.version=dev'
|
||||||
|
linux:
|
||||||
|
# or segmentation fault
|
||||||
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||||
|
LDFLAGS:
|
||||||
|
- -buildmode=pie
|
||||||
|
|
||||||
|
test: |
|
||||||
|
wunderctl version
|
||||||
|
wunderctl version | grep {{version}}
|
Loading…
Reference in a new issue