mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
28 lines
591 B
YAML
28 lines
591 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:
|
||
|
# 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}}
|