File: .travis.yml

package info (click to toggle)
rust-podio 0.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 132 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (3)
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
language: rust

rust:
    - stable
    - nightly

sudo: false

addons:
    apt:
        packages:
            - libcurl4-openssl-dev
            - libelf-dev
            - libdw-dev

notifications:
    email:
        on_success: never
        on_failure: always

script:
    - cargo build
    - cargo test
    - '[ "$TRAVIS_RUST_VERSION" != "nightly" ] || cargo bench'
    - cargo doc --no-deps
    - rustdoc --test README.md -L target/debug

after_success:
    - curl https://mvdnes.github.io/rust-docs/travis-doc-upload.sh | bash