File: .travis.yml

package info (click to toggle)
rust-smartstring 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 260 kB
  • sloc: makefile: 2
file content (24 lines) | stat: -rw-r--r-- 382 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
23
24
language: rust
rust:
  - 1.46.0
  - stable
  - beta
  - nightly
arch:
  - amd64
  - arm64
  - ppc64le
  - s390x

cache:
  directories:
    - /home/travis/.rustup
    - /home/travis/.cargo
    - /home/travis/target

install:
  - rustup update
  - mkdir -p .cargo && echo '[build]' > .cargo/config && echo 'target-dir = "/home/travis/target"'
    >> .cargo/config

script: cargo test