https://github.com/CNugteren/CLTune
Raw File
Tip revision: 8a56a4a314be7ccef56ad8f55e8a34a37dda0545 authored by Cedric Nugteren on 12 December 2022, 08:07:03 UTC
Merge pull request #60 from trixirt/for-fedora
Tip revision: 8a56a4a
.travis.yml
language: cpp
sudo: required
dist: trusty

os:
  - linux
  - osx

compiler:
  - gcc
  - clang

addons:
  apt:
    sources:
      # kubuntu-backports contains newer versions of cmake to install
      - kubuntu-backports
    packages:
      - cmake
      - ocl-icd-opencl-dev

env:
  global:
    - CLTUNE_ROOT=${TRAVIS_BUILD_DIR}/bin/cltune

before_install:
  - cmake --version;
  - ${CC} --version;
  - ${CXX} --version;

before_script:
  - mkdir -p ${CLTUNE_ROOT}
  - pushd ${CLTUNE_ROOT}
  - cmake -DSAMPLES=ON -DTESTS=ON ${TRAVIS_BUILD_DIR}

script:
  - make

branches:
  only:
    - master
    - development

notifications:
  email: false
back to top