File: .travis.yml

package info (click to toggle)
rust-alloc-no-stdlib 2.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 208 kB
  • sloc: makefile: 4
file content (22 lines) | stat: -rw-r--r-- 375 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: rust
rust:
  - nightly
  - stable
  - 1.12.0
  - 1.8.0

os:
  - linux
  - osx

script:
  - cargo test
  - cargo test --features=unsafe --release
  - cd alloc-stdlib && cargo test && cd ..
  - cd alloc-stdlib && cargo test --release --features=unsafe && cd ..
  - cd alloc-stdlib && cargo test --release && cd .. 

matrix:
  exclude:
    - rust: 1.8.0
      os: osx