min-max-heap 1.3.0

An efficient, double-ended priority queue
Documentation
language: rust
rust:
  - stable
  - beta
  - nightly
  - 1.32.0

# helpful for kcov
env:
  - RUSTFLAGS="-C link-dead-code"

# required for kcov
sudo: required

matrix:
  allow_failures:
    - rust: nightly

notifications:
  email:
    on_success: never

addons:
  apt:
    packages:
      - libcurl4-openssl-dev
      - libelf-dev
      - libdw-dev
      - cmake
      - gcc
      - binutils-dev
      - libiberty-dev

after_success: |
  wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
  tar xzf master.tar.gz &&
  cd kcov-master &&
  mkdir build &&
  cd build &&
  cmake .. &&
  make &&
  make install DESTDIR=../../kcov-build &&
  cd ../.. &&
  rm -rf kcov-master &&
  for file in target/debug/min_max_heap-*[^\.d]; do mkdir -p "target/cov/$ (basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
  bash <(curl -s https://codecov.io/bash) &&
  echo "Uploaded code coverage"