CLBlast/.appveyor.yml

67 lines
2 KiB
YAML
Raw Normal View History

2016-06-27 12:47:39 +02:00
environment:
global:
CLBLAST_BUILD: "C:\\clblast\\build"
2016-06-27 12:47:39 +02:00
OPENCL_REGISTRY: "https://www.khronos.org/registry/cl"
OPENCL_ROOT: "C:\\dependencies\\opencl"
2016-06-27 12:47:39 +02:00
platform:
- x64
2016-06-27 14:44:08 +02:00
configuration:
- Release
init:
- cmake --version
- C:\"Program Files (x86)"\"Microsoft Visual Studio 14.0"\VC\vcvarsall.bat %PLATFORM%
2016-06-27 12:47:39 +02:00
# Creates an OpenCL library to link against. Taken from clMathLibraries/clBLAS
install:
- ps: mkdir $env:OPENCL_ROOT
- ps: pushd $env:OPENCL_ROOT
- ps: $opencl_registry = $env:OPENCL_REGISTRY
2016-06-27 13:55:16 +02:00
# This downloads the source to the Khronos ICD library
- git clone https://github.com/KhronosGroup/OpenCL-ICD-Loader.git
- ps: pushd OpenCL-ICD-Loader
- git checkout cb4acb9 # older version (pre 2.2 support)
- ps: popd
2016-06-27 13:55:16 +02:00
- ps: mv ./OpenCL-ICD-Loader/* .
2016-06-27 12:47:39 +02:00
# This downloads all the opencl header files
# The cmake build files expect a directory called inc
- ps: mkdir inc/CL
2017-12-21 20:38:25 +01:00
- git clone https://github.com/KhronosGroup/OpenCL-Headers.git inc/CL
- ps: wget $opencl_registry/api/2.1/cl.hpp -OutFile inc/CL/cl.hpp
# Switch to OpenCL 2.1 headers
- ps: pushd inc/CL
2017-12-21 20:26:09 +01:00
- git checkout bf0f43b # OpenCL 2.1
- ps: popd
2016-06-27 12:47:39 +02:00
# - ps: dir; if( $lastexitcode -eq 0 ){ dir include/CL } else { Write-Output boom }
# Create the static import lib in a directory called lib, so findopencl() will find it
- ps: mkdir lib
- ps: pushd lib
- cmake -G "NMake Makefiles" ..
- nmake
- ps: popd
# Rename the inc directory to include, so FindOpencl() will find it
- ps: ren inc include
- ps: popd
before_build:
- ps: mkdir $env:CLBLAST_BUILD
- ps: pushd $env:CLBLAST_BUILD
- ps: mkdir install_dir
- cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=install_dir -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DTESTS=ON -DCLIENTS=ON -DSAMPLES=ON -DNETLIB=ON %APPVEYOR_BUILD_FOLDER%
2016-06-27 12:47:39 +02:00
build_script:
- nmake
- nmake install
after_build:
- ps: pushd $env:CLBLAST_BUILD
2018-01-29 20:45:21 +01:00
- 7z a CLBlast-1.3.0-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.3.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
artifacts:
- path: '*.zip'
name: release
type: zip