pantry/projects/odigos.io/package.yml

39 lines
947 B
YAML
Raw Normal View History

distributable:
url: https://github.com/keyval-dev/odigos/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: keyval-dev/odigos
provides:
- bin/odigos
build:
dependencies:
2024-06-05 16:45:06 +03:00
go.dev: ^1.22
2024-05-08 17:04:34 +03:00
script:
- go mod download
2024-06-05 16:45:06 +03:00
- go build $ARGS -ldflags="$GO_LDFLAGS" ./cli
env:
CGO_ENABLED: 0
2024-06-05 16:45:06 +03:00
GO_LDFLAGS:
- -s
- -w
- -X github.com/keyval-dev/odigos/cli/cmd.OdigosVersion=v{{version}}
2024-05-08 17:04:34 +03:00
- -X github.com/odigos-io/odigos/cli/cmd.OdigosVersion=v{{version}}
2024-06-05 16:45:06 +03:00
ARGS:
- -v
- -trimpath
- -o={{prefix}}/bin/odigos
- -tags embed_manifests
linux:
# or segmentation fault
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
2024-06-05 16:45:06 +03:00
GO_LDFLAGS:
- -buildmode=pie
test:
script:
# Odigos Cli Version: version.Info{Version:'v1.0.1', GitCommit:'', BuildDate:''}
- odigos version | grep {{version}}