mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 16:35:07 +03:00
+koyeb (#2869)
* +koyeb * cleanup --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
parent
be986237a5
commit
334ac308d1
1 changed files with 33 additions and 0 deletions
33
projects/koyeb.com/package.yml
Normal file
33
projects/koyeb.com/package.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
distributable:
|
||||
url: https://github.com/koyeb/koyeb-cli/archive/refs/tags/v{{version}}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: koyeb/koyeb-cli
|
||||
|
||||
provides:
|
||||
- bin/koyeb
|
||||
|
||||
build:
|
||||
script: |
|
||||
go mod download
|
||||
go build -v -trimpath -ldflags="$LDFLAGS" -o $BINLOC ./cmd/koyeb
|
||||
dependencies:
|
||||
go.dev: ^1.18
|
||||
env:
|
||||
GO111MODULE: on
|
||||
CGO_ENABLED: 0
|
||||
BINLOC: '{{prefix}}/bin/koyeb'
|
||||
LDFLAGS:
|
||||
- -s
|
||||
- -w
|
||||
- -X main.debugMode=false
|
||||
- -X github.com/koyeb/koyeb-cli/pkg/koyeb.Version={{version}}
|
||||
linux:
|
||||
# or segmentation fault
|
||||
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||
LDFLAGS:
|
||||
- -buildmode=pie
|
||||
|
||||
test: |
|
||||
koyeb version | grep {{version}}
|
Loading…
Reference in a new issue