Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
criterion-plot 0.1.1 - Docs.rs
[go: Go Back, main page]

criterion-plot 0.1.1

Criterion's plotting library
Documentation
sudo: false

language: rust

cache: cargo

rust:
  - stable
  - beta
  - nightly

os:
  - linux
  - osx

addons:
  apt:
    packages:
      - gnuplot

before_script:
  - |
      pip install 'travis-cargo<0.2' --user &&
      export PATH=$HOME/.local/bin:$PATH

install:
  - sh ci/install.sh
  - export PATH=$HOME/cargo-clippy/target/release:$PATH
  - if [ "$TRAVIS_OS_NAME" = "osx" ]; then
      brew update;
      brew install gnuplot;
    fi

script:
  - cargo build
  - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
      cargo clippy -- --cfg clippy;
    fi
  - cargo test
  - cargo doc

after_success:
  - if [ "$TRAVIS_OS_NAME" = "linux" ]; then
      travis-cargo --only stable doc-upload;
    fi

env:
  global:
    - TRAVIS_CARGO_NIGHTLY_FEATURE=""
    - secure: C2Oij4OPM2pdkbpEV6bsCJ8PpqDk2NtjFhFiO+4ZlYrRCQnbv+TAOuWNj5aX1EOWPlMQdP/95VrEOizUcK1twsCuc6d8PnAoCu8WnLRsOSO8GftVynC+CEJSnaDpAVO3N23f5jrCsKQhZx9R/hADpY5ni2ik0rKNWGllaYzuUCc=

branches:
  only: master

notifications:
  email:
    on_success: never