rtic/.travis.yml

70 lines
1.1 KiB
YAML
Raw Normal View History

2017-04-12 06:12:06 +02:00
language: rust
matrix:
include:
- env: TARGET=x86_64-unknown-linux-gnu
2017-12-08 13:37:46 +01:00
rust: nightly
2017-07-27 22:02:25 +02:00
2017-04-12 06:12:06 +02:00
- env: TARGET=thumbv6m-none-eabi
rust: nightly
2017-07-27 22:02:25 +02:00
addons:
apt:
sources:
- debian-sid
packages:
- binutils-arm-none-eabi
2017-04-12 06:12:06 +02:00
- env: TARGET=thumbv7m-none-eabi
rust: nightly
2017-07-27 22:02:25 +02:00
addons:
apt:
sources:
- debian-sid
packages:
- binutils-arm-none-eabi
2017-04-12 06:12:06 +02:00
- env: TARGET=thumbv7em-none-eabi
rust: nightly
2017-07-27 22:02:25 +02:00
addons:
apt:
sources:
- debian-sid
packages:
- binutils-arm-none-eabi
2017-04-12 06:12:06 +02:00
- env: TARGET=thumbv7em-none-eabihf
rust: nightly
2017-07-27 22:02:25 +02:00
addons:
apt:
sources:
- debian-sid
packages:
- binutils-arm-none-eabi
2017-04-12 06:12:06 +02:00
before_install: set -e
install:
2017-07-27 22:02:25 +02:00
- bash ci/install.sh
2017-04-12 06:12:06 +02:00
script:
- bash ci/script.sh
after_script: set +e
2017-12-09 15:25:46 +01:00
cache:
cargo: true
directories:
- $HOME/.xargo
2017-04-12 06:12:06 +02:00
before_cache:
- chmod -R a+r $HOME/.cargo
branches:
only:
2017-04-12 06:24:39 +02:00
- auto
2017-04-12 06:12:06 +02:00
- master
2017-04-12 06:24:39 +02:00
- try
2017-04-12 06:12:06 +02:00
notifications:
email:
on_success: never