fix(atlas)

closes #6197
This commit is contained in:
Jacob Heider 2024-05-21 14:16:35 -04:00 committed by Jacob Heider
parent 3b720d08d1
commit bc8e561213

View file

@ -12,10 +12,9 @@ build:
dependencies: dependencies:
go.dev: ^1.20 go.dev: ^1.20
working-directory: cmd/atlas working-directory: cmd/atlas
script: | script:
go mod download - go mod download
mkdir -p "{{ prefix }}"/bin - go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC .
go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC .
env: env:
GOPROXY: https://proxy.golang.org,direct GOPROXY: https://proxy.golang.org,direct
GOSUMDB: sum.golang.org GOSUMDB: sum.golang.org
@ -29,8 +28,11 @@ build:
# 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: LDFLAGS:
- -buildmode=pie - -buildmode=pie
test: test:
script: script:
- test "$(atlas version | head -n1)" = "atlas version v{{version}}" - run: test "$(atlas version | head -n1)" = "atlas version v{{version}}"
if: <0.23
- run: test "$(atlas version | head -n1)" = "atlas unofficial version v{{version}}"
if: '>=0.23'