hetzner.com/hcloud (#2732)

* Add hcloud

* Fix versioning and test against version
This commit is contained in:
David Chavez 2023-08-03 19:38:50 +02:00 committed by GitHub
parent 771f1a90d4
commit cdf58073d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,32 @@
distributable:
url: https://github.com/hetznercloud/cli/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: hetznercloud/cli/tags
strip: /^v/
provides:
- bin/hcloud
build:
script: |
go build -o hcloud -v -ldflags="$LDFLAGS" cmd/hcloud/main.go
mkdir -p "{{ prefix }}"/bin
mv hcloud "{{ prefix }}"/bin
dependencies:
go.dev: ^1.18
env:
GO111MODULE: on
CGO_ENABLED: 0
LDFLAGS:
[-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
test:
script: |
test "$(hcloud version)" = "hcloud {{version}}"