2023-04-05 03:56:33 +03:00
|
|
|
distributable:
|
|
|
|
url: https://github.com/hairyhenderson/gomplate/archive/refs/tags/v{{version}}.tar.gz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
|
|
|
github: hairyhenderson/gomplate
|
|
|
|
|
|
|
|
build:
|
|
|
|
dependencies:
|
2024-06-02 23:36:49 +03:00
|
|
|
go.dev: ~1.22.3
|
|
|
|
script:
|
|
|
|
- go mod download
|
|
|
|
- go build -v -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/gomplate ./cmd/gomplate
|
2023-04-05 03:56:33 +03:00
|
|
|
env:
|
|
|
|
LDFLAGS:
|
|
|
|
- -s
|
|
|
|
- -w
|
|
|
|
- -X $(go list ./version).Version={{version}}
|
|
|
|
linux:
|
|
|
|
# or segmentation fault
|
|
|
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
|
|
|
LDFLAGS:
|
2024-06-02 23:36:49 +03:00
|
|
|
- -buildmode=pie
|
2023-04-05 03:56:33 +03:00
|
|
|
|
|
|
|
provides:
|
|
|
|
- bin/gomplate
|
|
|
|
|
|
|
|
test:
|
|
|
|
fixture: |
|
|
|
|
Hello, {{ .Env.USER }}
|
2024-06-02 23:36:49 +03:00
|
|
|
script:
|
|
|
|
- test "$(gomplate < $FIXTURE)" = "Hello, $USER"
|
|
|
|
- test "$(gomplate --version)" = "gomplate version {{version}}"
|