mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
30 lines
541 B
YAML
30 lines
541 B
YAML
|
distributable:
|
||
|
url: https://github.com/logdyhq/logdy-core/archive/refs/tags/{{version.tag}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: logdyhq/logdy-core
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
go.dev: ^1.21.4
|
||
|
script: go build $ARGS -ldflags="$GO_LDFLAGS" ./
|
||
|
env:
|
||
|
ARGS:
|
||
|
- -trimpath
|
||
|
- -o={{prefix}}/bin/logdy
|
||
|
GO_LDFLAGS:
|
||
|
- -s
|
||
|
- -w
|
||
|
- -X=main.Version={{version}}
|
||
|
linux:
|
||
|
GO_LDFLAGS:
|
||
|
- -buildmode=pie
|
||
|
|
||
|
provides:
|
||
|
- bin/logdy
|
||
|
|
||
|
test:
|
||
|
- logdy --version | grep {{version}}
|
||
|
- logdy --help
|