mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Add basic Travis config for Linux builds
Performs a single build on Linux using the unified headers and linking against the ICD. Also add a build badge to the README. Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
28
.travis.yml
Normal file
28
.travis.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
language: cpp
|
||||
|
||||
os:
|
||||
- linux
|
||||
|
||||
script:
|
||||
- export TOP=$(pwd)
|
||||
- git clone https://github.com/KhronosGroup/OpenCL-Headers.git
|
||||
- cd OpenCL-Headers
|
||||
- ln -s CL OpenCL # For OSX builds
|
||||
- cd ..
|
||||
- git clone https://github.com/KhronosGroup/OpenCL-ICD-Loader.git
|
||||
- cd ${TOP}/OpenCL-ICD-Loader
|
||||
- mkdir build
|
||||
- cd build
|
||||
- cmake -DOPENCL_INCLUDE_DIRS=${TOP}/OpenCL-Headers/ ..
|
||||
- make
|
||||
- cd ${TOP}
|
||||
- ls -l
|
||||
- mkdir build
|
||||
- cd build
|
||||
- cmake -DCLConf_OUT_DIR=.
|
||||
-DCLConform_LIB_DIR=${TOP}/OpenCL-ICD-Loader/build/lib
|
||||
-DCLConform_LIBRARIES="-lm -lpthread -lOpenCL"
|
||||
-DCLConform_HEADERS=${TOP}/OpenCL-Headers
|
||||
-DCMAKE_CL_64=ON
|
||||
../test_conformance/
|
||||
- make -j2
|
||||
Reference in New Issue
Block a user