mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
27 lines
464 B
YAML
27 lines
464 B
YAML
|
# https://pluto.docs.fairwinds.com/
|
||
|
|
||
|
distributable:
|
||
|
url: git+https://github.com/FairwindsOps/pluto
|
||
|
ref: v{{version}}
|
||
|
|
||
|
versions:
|
||
|
github: FairwindsOps/pluto
|
||
|
strip: /^v/
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
go.dev: ^1.21
|
||
|
gnu.org/make: "*"
|
||
|
git-scm.org: "*"
|
||
|
script: |
|
||
|
make build VERSION=v{{version}}
|
||
|
mkdir -p "{{ prefix }}"/bin
|
||
|
mv pluto "{{ prefix }}"/bin
|
||
|
|
||
|
provides:
|
||
|
- bin/pluto
|
||
|
|
||
|
test:
|
||
|
script: |
|
||
|
pluto version | grep "Version:v{{version}}"
|