mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
32 lines
585 B
YAML
32 lines
585 B
YAML
|
distributable:
|
||
|
url: git+https://github.com/gemfury/cli.git
|
||
|
ref: ${{version.tag}}
|
||
|
|
||
|
versions:
|
||
|
github: gemfury/cli
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
go.dev: ^1.21
|
||
|
script:
|
||
|
- go build $ARGS -ldflags="$LDFLAGS" ./cmd/fury
|
||
|
env:
|
||
|
ARGS:
|
||
|
- -v
|
||
|
- -trimpath
|
||
|
- -o={{prefix}}/bin/fury
|
||
|
LDFLAGS:
|
||
|
- -s
|
||
|
- -w
|
||
|
- -X main.Version={{version}}
|
||
|
linux:
|
||
|
LDFLAGS:
|
||
|
- -buildmode=pie
|
||
|
|
||
|
provides:
|
||
|
- bin/fury
|
||
|
|
||
|
test:
|
||
|
- fury --version | grep {{version}}
|
||
|
- fury --help | grep 'Listing of your collaborations'
|
||
|
# more testing requires authorization
|