maskerad_memory_allocators 2.0.0

custom allocators, for memory fragmentation prevention.
Documentation
language: rust
sudo: false

dist: trusty
os:
  - linux

#run builds for Rust nightly only.
rust:
  - nightly



env:
  global:
    - RUSTFLAGS="-C link-dead-code"

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


# The main build
script:
  - cargo build --verbose
  - cargo test --all --verbose

#Code to run after build success
after_success: |
  [ $TRAVIS_RUST_VERSION = nightly ]
  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/maskerad_stack_allocator-*[^\.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"