fix(vale)

closes #6370
This commit is contained in:
Jacob Heider 2024-06-08 16:55:00 -04:00 committed by Jacob Heider
parent 4ad2a8e05e
commit b90acd957c

View file

@ -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}}"