forked from Syncleus/aparapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
330 lines (310 loc) · 12.4 KB
/
.travis.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
# Copyright (c) 2016 - 2017 Syncleus, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
env:
global:
# Ubuntu version
- LINUX_DIST=precise
- DEPS_DIR=${TRAVIS_BUILD_DIR}/deps
# OpenCL
- OPENCL_LIB=default
- OPENCL_VERSION="10"
# Khronos OpenCL ICD
- OPENCL_REGISTRY=https://www.khronos.org/registry/cl
- OPENCL_ROOT=${DEPS_DIR}/opencl
# POCL
- POCL_BRANCH=release_0_13 # branch/tag
#- POCL_COMMIT= # commit id
- POCL_LLVM_VERSION=3.8.0
- POCL_LLVM_CONFIG=${DEPS_DIR}/llvm-${POCL_LLVM_VERSION}/bin/llvm-config
- POCL_CXX_COMPILER=${DEPS_DIR}/llvm-${POCL_LLVM_VERSION}/bin/clang++
- POCL_C_COMPILER=${DEPS_DIR}/llvm-${POCL_LLVM_VERSION}/bin/clang
# Global build options and C++ flags
- CMAKE_OPTIONS="-DBOOST_COMPUTE_BUILD_TESTS=ON -DBOOST_COMPUTE_BUILD_EXAMPLES=ON -DBOOST_COMPUTE_BUILD_BENCHMARKS=ON -DBOOST_COMPUTE_USE_OFFLINE_CACHE=ON -DBOOST_COMPUTE_HAVE_OPENCV=ON -DBOOST_COMPUTE_THREAD_SAFE=ON"
- CXX_FLAGS="-Wall -pedantic -Werror -Wno-variadic-macros -Wno-long-long -Wno-shadow"
# Boost
- BOOST_VERSION=default
# Misc
- RUN_TESTS=true
- COVERAGE=true
- CODACY_PROJECT_TOKEN=e7f8ea58858a4c48b8df6b5443202255
matrix:
include:
############################################################################
# OSX
############################################################################
# FIXME: Error exit code when installing OpenCV with Brew
# OSX build
#- os: osx
#compiler: clang
#env:
#- ENV_CXX_FLAGS="-Wno-c99-extensions"
############################################################################
# POCL builds (OpenCL 1.0, 1.1)
############################################################################
# Trusty, OpenCL 1.0
- os: linux
dist: trusty
sudo: required
compiler: clang
addons:
apt:
packages: &trusty_pocl_packages
- g++-4.8
# clang and llvm 3.7 for POCL (llvm-toolchain-trusty-3.7 is not whitelisted)
# - clang-3.7
# - llvm-3.7
# - llvm-3.7-dev (...)
# POCL
- libltdl-dev
- libhwloc-dev
- pkg-config
- libedit-dev
# Boost
- libboost-chrono1.55-dev
- libboost-date-time1.55-dev
- libboost-test1.55-dev
- libboost-system1.55-dev
- libboost-filesystem1.55-dev
- libboost-timer1.55-dev
- libboost-program-options1.55-dev
- libboost-thread1.55-dev
# Misc
- python-yaml
- lcov
- libopencv-dev
- libxml-xpath-perl
sources: &trusty_pocl_sources
- ubuntu-toolchain-r-test
env:
- LINUX_DIST=trusty
- OPENCL_LIB=pocl
- OPENCL_VERSION="10"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/pocl/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
- os: linux
dist: trusty
sudo: required
compiler: gcc
addons:
apt:
packages: *trusty_pocl_packages
## sources: *trusty_pocl_sources
env:
- LINUX_DIST=trusty
- OPENCL_LIB=pocl
- OPENCL_VERSION="10"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/pocl/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
# Trusty, OpenCL 1.1
- os: linux
dist: trusty
sudo: required
compiler: clang
addons:
apt:
packages: *trusty_pocl_packages
## sources: *trusty_pocl_sources
env:
- LINUX_DIST=trusty
- OPENCL_LIB=pocl
- OPENCL_VERSION="11"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/pocl/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
- os: linux
dist: trusty
sudo: required
compiler: gcc
addons:
apt:
packages: *trusty_pocl_packages
## sources: *trusty_pocl_sources
env:
- LINUX_DIST=trusty
- OPENCL_LIB=pocl
- OPENCL_VERSION="11"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/pocl/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
############################################################################
# Khronos ICD builds (without running tests) (OpenCL 1.2, 2.0)
############################################################################
# Precise, OpenCL 1.2, Travis CI container-based infrastructure
- os: linux
sudo: false
compiler: clang
addons:
apt:
packages: &precise_icd_packages
- g++
# Boost
- libboost-chrono1.55-dev
- libboost-date-time1.55-dev
- libboost-test1.55-dev
- libboost-system1.55-dev
- libboost-filesystem1.55-dev
- libboost-timer1.55-dev
- libboost-program-options1.55-dev
- libboost-thread1.55-dev
# Misc
- python-yaml
- lcov
- libopencv-dev
- libxml-xpath-perl
sources: &precise_icd_sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
- boost-latest
env:
- RUN_TEST=false
- OPENCL_LIB=khronos-icd
- OPENCL_VERSION="12"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
- os: linux
sudo: false
compiler: gcc
addons:
apt:
packages: *precise_icd_packages
sources: *precise_icd_sources
env:
- RUN_TEST=false
- OPENCL_LIB=khronos-icd
- OPENCL_VERSION="12"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
# Precise, OpenCL 2.0, Travis CI container-based infrastructure
- os: linux
sudo: false
compiler: clang
addons:
apt:
packages: *precise_icd_packages
sources: *precise_icd_sources
env:
- RUN_TEST=false
- OPENCL_LIB=khronos-icd
- OPENCL_VERSION="20"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
- OPENCL_FILE="${OPENCL_ROOT}/lib/libOpenCL.so"
- os: linux
sudo: false
compiler: gcc
addons:
apt:
packages: *precise_icd_packages
sources: *precise_icd_sources
env:
- RUN_TEST=false
- OPENCL_LIB=khronos-icd
- OPENCL_VERSION="20"
- ENV_CMAKE_OPTIONS="-DOpenCL_LIBRARY=${OPENCL_ROOT}/lib/libOpenCL.so -DOpenCL_INCLUDE_DIR=${OPENCL_ROOT}/include"
before_install:
#install maven 3.5.4
- export M2_HOME=$HOME/apache-maven-3.5.4
- if [ ! -d $M2_HOME/bin ]; then curl https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz | tar zxf - -C $HOME; fi
- export PATH=$M2_HOME/bin:$PATH
# Install dependencies
- ".travis/codacy-install.sh"
- |
# POCL dependencies for Trusty
# llvm-toolchain-trusty-3.7 is not whitelisted yet https://github.com/travis-ci/apt-source-whitelist/issues/199
if [[ ${LINUX_DIST} == "trusty" && ${OPENCL_LIB} == "pocl" ]]; then
# see https://github.com/travis-ci/travis-ci/issues/6120
POCL_LLVM_URL=http://llvm.org/releases/${POCL_LLVM_VERSION}/clang+llvm-${POCL_LLVM_VERSION}-x86_64-linux-gnu-ubuntu-14.04.tar.xz
mkdir -p ${DEPS_DIR}/llvm-${POCL_LLVM_VERSION}
travis_retry wget --no-check-certificate --quiet -O llvm-${POCL_LLVM_VERSION}.tar.xz ${POCL_LLVM_URL}
tar xf llvm-${POCL_LLVM_VERSION}.tar.xz -C ${DEPS_DIR}/llvm-${POCL_LLVM_VERSION} --strip-components 1
#sudo add-apt-repository -y "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main"
#travis_retry wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | travis_retry sudo apt-key add -
#sudo apt-get update -qq -
#sudo apt-get install -qq -y clang-3.7 libclang-common-3.7-dev libclang-3.7-dev libclang1-3.7 libllvm3.7 lldb-3.7 llvm-3.7 llvm-3.7-dev llvm-3.7-runtime clang-modernize-3.7 clang-format-3.7 lldb-3.7-dev
# OSX
elif [[ ${TRAVIS_OS_NAME} == "osx" ]]; then
brew update
brew outdated boost || brew upgrade boost
brew outdated cmake || brew upgrade cmake
brew install lcov opencv # FIXME: exit status 1 with no error message
fi
- gem install coveralls-lcov
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
# Combine global build options with OS/compiler-dependent options
- export CMAKE_OPTIONS=${CMAKE_OPTIONS}" "${ENV_CMAKE_OPTIONS}
- export CXX_FLAGS=${CXX_FLAGS}" "${ENV_CXX_FLAGS}
install:
# Download and install recent cmake
- |
if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
CMAKE_URL="http://www.cmake.org/files/v3.4/cmake-3.4.3-Linux-x86_64.tar.gz"
mkdir -p ${DEPS_DIR}/cmake
travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C ${DEPS_DIR}/cmake
export PATH=${DEPS_DIR}/cmake/bin:${PATH}
fi
############################################################################
# Download OpenCL headers (and cl.hpp)
############################################################################
- |
if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
mkdir -p ${OPENCL_ROOT}/include/CL
pushd ${OPENCL_ROOT}/include/CL
travis_retry git clone --depth 1 https://github.com/KhronosGroup/OpenCL-Headers.git -b opencl${OPENCL_VERSION}
mv ./OpenCL-Headers/* .
travis_retry wget -w 1 -np -nd -nv -A h,hpp --no-check-certificate ${OPENCL_REGISTRY}/api/2.1/cl.hpp;
popd
fi
############################################################################
# Build and install POCL https://github.com/pocl/pocl
############################################################################
- |
if [[ ${TRAVIS_OS_NAME} == "linux" && ${OPENCL_LIB} == "pocl" ]]; then
travis_retry git clone --depth 1 https://github.com/pocl/pocl.git -b ${POCL_BRANCH}
cd pocl
if [[ -n "${POCL_COMMIT}" ]]; then
git checkout ${POCL_COMMIT}
fi
mkdir build
cd build
cmake -DDIRECT_LINKAGE=ON -DENABLE_ICD=OFF -DCMAKE_C_COMPILER=${POCL_C_COMPILER} -DCMAKE_CXX_COMPILER=${POCL_CXX_COMPILER} -DWITH_LLVM_CONFIG=${POCL_LLVM_CONFIG} -DCMAKE_INSTALL_PREFIX=${OPENCL_ROOT}/pocl/ ..
make install
cd ../..
fi
############################################################################
# fglrx does not work: https://github.com/travis-ci/travis-ci/issues/5221,
# so we build our own linkable .so file.
# Thanks to clSPARSE for providing opencl-icd build script.
############################################################################
- |
if [[ ${TRAVIS_OS_NAME} == "linux" && ${OPENCL_LIB} == "khronos-icd" ]]; then
mkdir -p ${OPENCL_ROOT}
pushd ${OPENCL_ROOT}
travis_retry git clone --depth 1 https://github.com/KhronosGroup/OpenCL-ICD-Loader.git
mv ./OpenCL-ICD-Loader/* .
mkdir -p inc/CL
pushd inc/CL
travis_retry git clone --depth 1 https://github.com/KhronosGroup/OpenCL-Headers.git
mv ./OpenCL-Headers/* .
popd
mkdir -p lib
pushd lib
cmake -G "Unix Makefiles" ..
make
cp ./bin/libOpenCL.so .
popd
popd
fi
after_success:
- bash <(curl -s https://codecov.io/bash)
- mvn site
- java -jar ~/codacy-coverage-reporter-assembly.jar report -l Java -r target/site/jacoco/jacoco.xml
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9923372173dc2b2a0bb4
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always