summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-09-25 10:44:31 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-09-25 10:44:31 +0200
commit115af8c78ed93894b1e3021d9612df89d2cef3d4 (patch)
tree4bb3b35e054643be978d66f10fbaf1b1ad6d0060
parentd13a98272b67c78ccb0f96d8812202c7fad63eda (diff)
Updated AppVeyor script to fix an issue with changes in the latest AppVeyor servers
-rw-r--r--.appveyor.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index eb7f1c97..69aecf20 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,8 +1,8 @@
environment:
global:
- CLBLAST_ROOT: "%APPVEYOR_BUILD_FOLDER%\\..\\bin\\clblast"
+ CLBLAST_BUILD: "C:\\clblast\\build"
OPENCL_REGISTRY: "https://www.khronos.org/registry/cl"
- OPENCL_ROOT: "%APPVEYOR_BUILD_FOLDER%\\..\\bin\\opencl"
+ OPENCL_ROOT: "C:\\dependencies\\opencl"
platform:
- x64
@@ -44,8 +44,8 @@ install:
- ps: popd
before_build:
- - ps: mkdir $env:CLBLAST_ROOT
- - ps: pushd $env:CLBLAST_ROOT
+ - 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 %APPVEYOR_BUILD_FOLDER%
@@ -54,7 +54,7 @@ build_script:
- nmake install
after_build:
- - ps: pushd $env:CLBLAST_ROOT
+ - ps: pushd $env:CLBLAST_BUILD
- 7z a CLBlast-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER