git-subtree-dir: ruma-api git-subtree-mainline: bb037a5c42c51567a3b9e41c2c131cef9867a4aa git-subtree-split: 2151711f64e99a5da370d48fa92795f2d4799866
17 lines
450 B
YAML
17 lines
450 B
YAML
image: archlinux
|
|
packages:
|
|
- rustup
|
|
sources:
|
|
- https://github.com/ruma/ruma-api
|
|
tasks:
|
|
- rustup: |
|
|
# We specify --profile minimal because we'd otherwise download docs
|
|
rustup toolchain install 1.40.0 --profile minimal
|
|
rustup default 1.40.0
|
|
- test: |
|
|
cd ruma-api
|
|
|
|
# Only make sure the code builds with the MSRV. Tests can require later
|
|
# Rust versions, don't compile or run them.
|
|
cargo build --verbose
|