Files
blog_os/.travis.yml
Philipp Oppermann cdd91df869 Run cargo xtest on CI
2019-04-26 13:42:04 +02:00

40 lines
682 B
YAML

language: rust
rust:
- nightly
os:
- linux
- osx
- windows
notifications:
email:
on_success: never
on_failure: always
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Build pull requests.
- master
# Build post braches
- /^post-.*$/
cache:
directories:
- $HOME/.cargo
before_script:
- rustup component add rust-src llvm-tools-preview
- cargo install cargo-xbuild bootimage cargo-cache --debug -Z install-upgrade
script:
- cargo xbuild
- cargo bootimage
- cargo xtest
- cargo cache --autoclean