ptx-builder 0.2.0

NVPTX build helper
Documentation
language: rust
cache: cargo

rust:
  - nightly
# - stable

# Dependencies of ptx-linker
addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
      - llvm-toolchain-trusty-5.0
    packages:
      - g++-6
      - llvm-5.0-dev

before_script:
  - export PATH=$HOME/.cargo/bin:$PATH
  - cargo install -f xargo
  - cargo install -f ptx-linker
  - rustup component add rust-src

script:
  - cargo check
  - cargo test

branches:
  only:
  - master

notifications:
  email:
    on_success: never