mirror of
https://github.com/ivabus/pantry
synced 2024-11-12 19:45:19 +03:00
parent
0bfec00a12
commit
e9aaaa3af4
|
@ -10,23 +10,22 @@ provides:
|
|||
- bin/hcloud
|
||||
|
||||
build:
|
||||
script: |
|
||||
go build -o hcloud -v -ldflags="$LDFLAGS" cmd/hcloud/main.go
|
||||
mkdir -p "{{ prefix }}"/bin
|
||||
mv hcloud "{{ prefix }}"/bin
|
||||
script: go build -o "{{ prefix }}"/bin/hcloud -v -ldflags="$LDFLAGS" cmd/hcloud/main.go
|
||||
dependencies:
|
||||
go.dev: ^1.18
|
||||
env:
|
||||
GO111MODULE: on
|
||||
CGO_ENABLED: 0
|
||||
LDFLAGS:
|
||||
[-s, -w, "-X=github.com/hetznercloud/cli/internal/version.Version={{version}}"]
|
||||
- -s
|
||||
- -w
|
||||
- '-X=github.com/hetznercloud/cli/internal/version.Version={{version}}'
|
||||
linux:
|
||||
# or segmentation fault
|
||||
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||
LDFLAGS:
|
||||
- -buildmode=pie
|
||||
- -buildmode=pie
|
||||
|
||||
test:
|
||||
script: |
|
||||
test "$(hcloud version)" = "hcloud {{version}}"
|
||||
- hcloud version
|
||||
- hcloud version | grep "hcloud {{version}}"
|
||||
|
|
Loading…
Reference in a new issue