pantry/projects/github.com/terraform-linters/tflint/package.yml

31 lines
692 B
YAML
Raw Normal View History

2023-05-07 01:13:15 +03:00
distributable:
url: https://github.com/terraform-linters/tflint/archive/refs/tags/v{{ version }}.tar.gz
strip-components: 1
versions:
github: terraform-linters/tflint
strip: /v/
provides:
- bin/tflint
build:
dependencies:
go.dev: '*'
script: |
export GOPATH="$PWD/build"
mkdir -p dist
go build -v -ldflags="$LDFLAGS" -o dist/tflint
mkdir -p {{prefix}}/bin
mv dist/tflint {{prefix}}/bin/
env:
2023-11-13 18:02:45 +03:00
LDFLAGS: [-s, -w]
linux:
LDFLAGS: [-buildmode=pie]
2023-05-07 01:13:15 +03:00
test:
script: |
# tflint returns exitstatus: 0 (no issues), 2 (errors occured), 3 (no errors but issues found)
test "" = "$(tflint test.tf)"
tflint --version | grep {{version}}