forked from shekohex/curve25519-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (33 loc) · 828 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: rust
sudo: false
rust:
- stable
- beta
- nightly
addons:
apt:
packages:
- gcc-arm-none-eabi
- libnewlib-arm-none-eabi
script: |
cargo build --verbose &&
cargo test --verbose &&
cargo doc --verbose &&
cargo build --verbose --no-default-features &&
cargo test --verbose --no-default-features &&
cargo doc --verbose --no-default-features &&
rustup target add thumbv7em-none-eabihf &&
cargo build --verbose --no-default-features --target thumbv7em-none-eabihf
matrix:
include:
- rust: nightly-2018-12-06
before_script:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
script:
- cargo fmt --all -- --check
- cargo clippy -- -D clippy::all
cache: cargo
notifications:
email:
on_success: never