mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
Terraform Docs (#2765)
* Terraform Docs * refactor: Use FQDN for project name * simpler script --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
parent
2048d99c47
commit
c1fa265244
29
projects/terraform-docs.io/package.yml
Normal file
29
projects/terraform-docs.io/package.yml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/terraform-docs/terraform-docs/archive/refs/tags/v{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: terraform-docs/terraform-docs
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/terraform-docs
|
||||||
|
|
||||||
|
build:
|
||||||
|
script:
|
||||||
|
- go mod download
|
||||||
|
- go build -v -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/terraform-docs
|
||||||
|
dependencies:
|
||||||
|
go.dev: ^1.16
|
||||||
|
env:
|
||||||
|
GO111MODULE: on
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
LDFLAGS:
|
||||||
|
-"-X=github.com/terraform-docs/terraform-docs/internal/version.commit={{version}}"
|
||||||
|
linux:
|
||||||
|
# or segmentation fault
|
||||||
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||||
|
LDFLAGS:
|
||||||
|
- -buildmode=pie
|
||||||
|
|
||||||
|
test:
|
||||||
|
terraform-docs --version | grep {{version}}
|
Loading…
Reference in a new issue