mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
32 lines
669 B
YAML
32 lines
669 B
YAML
|
distributable:
|
||
|
url: https://github.com/databricks/cli/archive/refs/tags/{{version.tag}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: databricks/cli
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
go.dev: ^1.21
|
||
|
script:
|
||
|
go build $ARGS -ldflags="$LDFLAGS"
|
||
|
env:
|
||
|
ARGS:
|
||
|
- -trimpath
|
||
|
- -o={{prefix}}/bin/databricks
|
||
|
LDFLAGS:
|
||
|
- -s
|
||
|
- -w
|
||
|
- -X github.com/databricks/cli/internal/build.buildVersion={{version}}
|
||
|
linux:
|
||
|
LDFLAGS:
|
||
|
- -buildmode=pie
|
||
|
|
||
|
provides:
|
||
|
- bin/databricks
|
||
|
|
||
|
test:
|
||
|
- databricks --version | grep {{version}}
|
||
|
- databricks --help
|
||
|
- databricks completion bash | grep '__databricks_handle_standard_completion_case'
|