aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-09-15 17:09:40 +0000
committerGitHub <noreply@github.com>2019-09-15 17:09:40 +0000
commit4ff28e9d13e845abf39c662643ae2ff5df57ec16 (patch)
tree7d9770cd357e584d85ef6ddc32bddd1a937d1020 /.travis.yml
parentfafeeb27270ef24fc3852711c6032f65aa7dbcc0 (diff)
parent7aa270cb92180abfc9102a69efdde378c3396b5e (diff)
Merge pull request #205 from japaric/heterogeneous
rtfm-syntax refactor + heterogeneous multi-core support
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 13 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 2c5fc7e..ac5a7b8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,22 +3,28 @@ language: rust
matrix:
include:
# NOTE used to build docs on successful merges to master
- # - env: TARGET=x86_64-unknown-linux-gnu
+ - env: TARGET=x86_64-unknown-linux-gnu
- # - env: TARGET=thumbv6m-none-eabi
- # if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
+ # MSRV
+ - env: TARGET=thumbv7m-none-eabi
+ rust: 1.36.0
+ if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
+
+ - env: TARGET=thumbv6m-none-eabi
+ if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- # - env: TARGET=thumbv7m-none-eabi
- # if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
+ - env: TARGET=thumbv7m-none-eabi
+ if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
+ # compile-fail tests
- env: TARGET=x86_64-unknown-linux-gnu
rust: nightly
- # if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
+ if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
+ # heterogeneous multi-core support
- env: TARGET=thumbv6m-none-eabi
rust: nightly
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
-
- env: TARGET=thumbv7m-none-eabi
rust: nightly
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)