pantry/projects/indexsupply.com/shovel/package.yml

38 lines
816 B
YAML
Raw Normal View History

2024-03-15 19:07:47 +03:00
distributable:
url: https://github.com/indexsupply/code/archive/refs/tags/{{version.tag}}.tar.gz
strip-components: 1
versions:
github: indexsupply/code/tags
strip: [/beta/] # FIXME: remove after 1.0
provides:
- bin/shovel
companions:
postgresql.org: '*'
build:
dependencies:
go.dev: ^1.21
working-directory: cmd/shovel
script:
- go mod download
- go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC ./
env:
BUILDLOC: '{{prefix}}/bin/shovel'
LDFLAGS:
- -s
- -w
- -X main.Version={{version}}
linux:
# or segmentation fault
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
LDFLAGS:
- -buildmode=pie
test:
script:
- shovel --help
- shovel -version | grep '^v{{version}}'