mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
c6d00f2168
closes #5855
31 lines
699 B
YAML
31 lines
699 B
YAML
distributable:
|
|
url: git+https://github.com/railwayapp/cli.git
|
|
ref: ${{version.tag}}
|
|
|
|
versions:
|
|
github: railwayapp/cli
|
|
|
|
build:
|
|
dependencies:
|
|
rust-lang.org: ^1.75
|
|
rust-lang.org/cargo: '*'
|
|
script:
|
|
# 3.5.2 didn't bump version
|
|
- run: sed -i 's/^version = ".*"$/version = "{{version}}"/' Cargo.toml
|
|
# could not compile `proc-macro2` (lib) due to previous error
|
|
- cargo add proc-macro2
|
|
- cargo install $ARGS
|
|
env:
|
|
ARGS:
|
|
- --root={{prefix}}
|
|
- --path=.
|
|
- --locked
|
|
|
|
provides:
|
|
- bin/railway
|
|
|
|
test:
|
|
- railway init 2>out.log || true
|
|
- cat out.log | grep 'Unauthorized. Please login with `railway login`'
|
|
- railway --version | grep {{version}}
|