CLBlast/.travis.yml

45 lines
709 B
YAML
Raw Normal View History

2015-08-18 07:22:27 +02:00
language: cpp
sudo: required
dist: trusty
addons:
apt:
sources:
# kubuntu-backports contains newer versions of cmake to install
- kubuntu-backports
packages:
- cmake
- ocl-icd-opencl-dev
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
- os: osx
env:
global:
2016-06-27 12:47:39 +02:00
- CLBLAST_ROOT=${TRAVIS_BUILD_DIR}/bin/clblast
2015-08-19 09:20:10 +02:00
before_install:
- cmake --version;
- ${CC} --version;
- ${CXX} --version;
2015-08-18 07:22:27 +02:00
before_script:
- mkdir -p ${CLBLAST_ROOT}
- pushd ${CLBLAST_ROOT}
- cmake -DTESTS=ON -DCLIENTS=ON -DSAMPLES=ON -DNETLIB=ON ${TRAVIS_BUILD_DIR}
2015-08-18 08:25:32 +02:00
script:
- make
branches:
only:
- master
2015-08-18 08:25:32 +02:00
notifications:
email: false