Files
microrust/.travis.yml
Michael Droogleever 8e05dfd010 Initial commit
Much of the content here is a direct port from https://github.com/japaric/discovery
2018-07-02 23:04:56 +02:00

33 lines
422 B
YAML

language: rust
rust: nightly
addons:
apt:
packages:
- gcc-arm-none-eabi
install:
- bash ci/install.sh
script:
- bash ci/script.sh
after_success:
- bash ci/after-success.sh
cache: cargo
before_cache:
# Travis can't cache files that are not readable by "others"
- chmod -R a+r $HOME/.cargo
branches:
only:
- master
- staging
- trying
notifications:
email:
on_success: never