From 9098f4daad9a88e57b408796548d15ae6e41c138 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Mon, 30 Jan 2023 17:47:32 -0500 Subject: [PATCH] +aiac --- .../github.com/gofireflyio/aiac/package.yml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 projects/github.com/gofireflyio/aiac/package.yml diff --git a/projects/github.com/gofireflyio/aiac/package.yml b/projects/github.com/gofireflyio/aiac/package.yml new file mode 100644 index 00000000..68957a59 --- /dev/null +++ b/projects/github.com/gofireflyio/aiac/package.yml @@ -0,0 +1,37 @@ +distributable: + url: https://github.com/gofireflyio/aiac/archive/refs/tags/v{{version}}.tar.gz + strip-components: 1 + +versions: + github: gofireflyio/aiac + strip: /^v / + +dependencies: + # __DEP__: __DEP_VERSION__ + +build: + dependencies: + go.dev: ^1.18 + # __DEP__: __DEP_VERSION__ + 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