mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
5cdbc20ad4
remove rust <1.79 hacks closes #6438
32 lines
846 B
YAML
32 lines
846 B
YAML
distributable:
|
|
url: https://github.com/quickwit-oss/quickwit/archive/refs/tags/v{{ version }}.tar.gz
|
|
strip-components: 1
|
|
|
|
provides:
|
|
- bin/quickwit
|
|
|
|
versions:
|
|
github: quickwit-oss/quickwit
|
|
strip: /v/
|
|
|
|
dependencies:
|
|
# This is a runtime dep since they use protos at runtime:
|
|
# https://github.com/quickwit-oss/quickwit/blob/main/quickwit/quickwit-proto/protos/quickwit/search.proto
|
|
protobuf.dev: ^25
|
|
|
|
build:
|
|
working-directory: quickwit/quickwit-cli
|
|
dependencies:
|
|
rust-lang.org: ^1.79
|
|
rust-lang.org/cargo: '*'
|
|
script:
|
|
- run: 'sed -i -e''s/ version,$/version: "{{version}}".to_string(),/'' build_info.rs'
|
|
working-directory: ../quickwit-serve/src
|
|
- cargo install --locked --path . --root {{prefix}}
|
|
|
|
test:
|
|
script:
|
|
- quickwit --help
|
|
- quickwit --version
|
|
- quickwit --version | grep "{{version}}"
|