mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 20:45:09 +03:00
85ee358dd0
needs `protoc` now.
29 lines
779 B
YAML
29 lines
779 B
YAML
distributable:
|
|
url: https://tailcall.gateway.scarf.sh/archive/refs/tags/tailcall-v{{ version }}.tar.gz
|
|
strip-components: 1
|
|
|
|
provides:
|
|
- bin/tailcall
|
|
|
|
versions:
|
|
github: tailcallhq/tailcall
|
|
strip: /v/
|
|
|
|
build:
|
|
env:
|
|
APP_VERSION: '{{ version }}'
|
|
dependencies:
|
|
rust-lang.org: '>=1.65'
|
|
rust-lang.org/cargo: '*'
|
|
protobuf.dev: '*'
|
|
script:
|
|
# tries to load a vendored `protoc` with the wrong architecture
|
|
- sed -i 's|protoc_bin_vendored::protoc_bin_path().expect("Failed to find protoc binary")|Path::new("{{deps.protobuf.dev.prefix}}/bin/protoc")|' build.rs
|
|
- cargo install --locked --path . --root {{prefix}}
|
|
|
|
test:
|
|
script:
|
|
# required file
|
|
- run: touch .env
|
|
if: '>=0.65.0'
|
|
- tailcall --version | grep "tailcall {{version}}"
|