Files
blog_os/.travis.yml
Philipp Oppermann 450099c13a Only cache .cargo/bin to speed up CI
The target folder needs to be recompiled anyway with each new nightly.
2019-01-20 19:05:28 +01:00

55 lines
1.0 KiB
YAML

language: rust
sudo: false
notifications:
email:
on_success: never
on_failure: change
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
rust:
- nightly
os:
- linux
- osx
- windows
cache:
directories:
- $HOME/.cargo/bin
- $HOME/.cargo/.crates.toml
- $HOME/Library/Caches/Homebrew
addons:
apt:
packages:
- qemu-system-x86
homebrew:
packages:
- qemu
install:
- if [ $TRAVIS_OS_NAME = windows ]; then choco install qemu; export PATH="/c/Program Files/qemu:$PATH"; fi
before_script:
- rustup component add rust-src
- (test -x $HOME/.cargo/bin/cargo-update-installed || cargo install cargo-update-installed)
- (test -x $HOME/.cargo/bin/cargo-xbuild || cargo install cargo-xbuild)
- (test -x $HOME/.cargo/bin/bootimage || cargo install bootimage)
- cargo update-installed
script:
- bootimage build
- cargo test
- bootimage test