mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
parent
4ad2a8e05e
commit
b90acd957c
|
@ -10,27 +10,23 @@ provides:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
dependencies:
|
dependencies:
|
||||||
go.dev: ^1.20
|
go.dev: ~1.21
|
||||||
script: |
|
script:
|
||||||
go mod download
|
- go mod download
|
||||||
mkdir -p "{{ prefix }}"/bin
|
- go build $ARGS -ldflags="$GO_LDFLAGS" ./cmd/vale
|
||||||
go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC ./cmd/vale
|
|
||||||
env:
|
env:
|
||||||
GOPROXY: https://proxy.golang.org,direct
|
ARGS:
|
||||||
GOSUMDB: sum.golang.org
|
- -v
|
||||||
GO111MODULE: on
|
- -trimpath
|
||||||
CGO_ENABLED: 0
|
- -o {{prefix}}/bin/vale
|
||||||
BUILDLOC: '{{prefix}}/bin/vale'
|
GO_LDFLAGS:
|
||||||
LDFLAGS:
|
|
||||||
- -s
|
- -s
|
||||||
- -w
|
- -w
|
||||||
- -X main.version=v{{version}}
|
- -X main.version=v{{version}}
|
||||||
linux:
|
linux:
|
||||||
# or segmentation fault
|
# or segmentation fault
|
||||||
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||||
LDFLAGS:
|
GO_LDFLAGS:
|
||||||
- -buildmode=pie
|
- -buildmode=pie
|
||||||
|
|
||||||
test:
|
test: test "$(vale --version)" = "vale version v{{version}}"
|
||||||
script:
|
|
||||||
- test "$(vale --version)" = "vale version v{{version}}"
|
|
||||||
|
|
Loading…
Reference in a new issue