mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
33 lines
747 B
YAML
33 lines
747 B
YAML
distributable:
|
|
url: https://github.com/gofireflyio/aiac/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: gofireflyio/aiac
|
|
strip: /^v /
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: ^1.18
|
|
script: |
|
|
go build -v -ldflags="$LDFLAGS"
|
|
mkdir -p "{{ prefix }}"/bin
|
|
mv aiac "{{ prefix }}"/bin
|
|
env:
|
|
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
|
|
|
|
provides:
|
|
- bin/aiac
|
|
|
|
# FIXME: not much to test without an API key
|
|
test: |
|
|
aiac --help
|
|
if test ! -z $OPENAPI_KEY; then
|
|
aiac --api-key $OPENAPI_KEY get bash api wrapper
|
|
fi
|