Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,38 @@
language: rust



matrix:
include:
- env: TARGET=armv7-unknown-linux-gnueabihf
rust: nightly
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
addons:
apt:
packages:
- libc6-armhf-cross
- libc6-dev-armhf-cross
- gcc-arm-linux-gnueabihf

- env: TARGET=x86_64-unknown-linux-gnu
rust: nightly
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)

- env: TARGET=armv7-unknown-linux-gnueabihf
rust: stable
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
addons:
apt:
packages:
- libc6-armhf-cross
- libc6-dev-armhf-cross
- gcc-arm-linux-gnueabihf


- env: TARGET=x86_64-unknown-linux-gnu
rust: stable
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)


before_install:
- set -e
Expand Down