mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
7b55400ae5
* gitlab.com/greut/eclint * gitlab.com/greut/eclint
28 lines
534 B
YAML
28 lines
534 B
YAML
distributable:
|
|
url: https://gitlab.com/greut/eclint/-/archive/v{{version}}/eclint-v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
gitlab: greut/eclint
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: '*'
|
|
script:
|
|
- go mod download
|
|
- mkdir -p {{prefix}}/bin
|
|
- go build -trimpath -ldflags="$LDFLAGS" -o "{{ prefix }}"/bin/eclint ./cmd/eclint
|
|
env:
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
- -X main.version=v{{version}}
|
|
CGO_ENABLED: 0
|
|
|
|
provides:
|
|
- bin/eclint
|
|
|
|
test:
|
|
script:
|
|
- eclint -version | grep "v{{version}}"
|