16 lines
363 B
YAML
16 lines
363 B
YAML
image: archlinux
|
|
sources:
|
|
- https://github.com/mahkoh/jay
|
|
tasks:
|
|
- install: |
|
|
sudo pacman -S rustup
|
|
rustup toolchain install stable
|
|
rustup default stable
|
|
- build: |
|
|
cd jay
|
|
cargo build --features it
|
|
- test: |
|
|
cd jay
|
|
export RUSTC_BOOTSTRAP=1
|
|
export RUST_BACKTRACE=1
|
|
cargo run --features it -- run-tests
|