File: .travis.yml

package info (click to toggle)
rust-pkg-version 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: makefile: 2
file content (21 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: rust
rust:
  - 1.36.0
  - stable
  - nightly
sudo: false
env:
  global:
    - RUSTFLAGS="--deny warnings"
    - RUST_BACKTRACE=1
    - CARGO_INCREMENTAL=0  # decrease size of `target` to make the cache smaller
    - NO_STD_TARGET=thumbv7em-none-eabi
script:
  # Run tests on x86-64
  - cargo test --all
  # Make sure it builds on #![no_std]-only targets
  - rustup target add $NO_STD_TARGET
  - cargo build --target $NO_STD_TARGET
notifications:
  email:
    on_success: never