forked from clMathLibraries/clFFT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (24 loc) · 674 Bytes
/
.travis.yml
File metadata and controls
31 lines (24 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: cpp
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx opencl-headers libboost-program-options-dev libfftw3-dev
# Uncomment below to help verify the installs above work
# - ls -la /usr/lib/libboost*
# - ls -la /usr/include/boost
before_script:
- cd ${TRAVIS_BUILD_DIR}
- mkdir -p bin/clFFT
- cd bin/clFFT
- cmake -DBoost_NO_SYSTEM_PATHS=OFF -DCMAKE_INSTALL_PREFIX:PATH=$PWD/package ../../src
script:
- make install
after_success:
- cd ${TRAVIS_BUILD_DIR}/bin/clFFT
- make package
notifications:
email:
- clmath-developers@googlegroups.com
on_success: change
on_failure: always