git-subtree-dir: ruma-common git-subtree-mainline: c186f0f8c9c542fd1c7cea464de1ae94e5bd32ba git-subtree-split: b516c0cd72c1a5e9985905f60b956c5365cd8789
17 lines
456 B
YAML
17 lines
456 B
YAML
image: archlinux
|
|
packages:
|
|
- rustup
|
|
sources:
|
|
- https://github.com/ruma/ruma-common
|
|
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-common
|
|
|
|
# Only make sure the code builds with the MSRV. Tests can require later
|
|
# Rust versions, don't compile or run them.
|
|
cargo build --verbose
|