From a306cb9f4d30ba354d4a1f2c88d9a95ba179ddcc Mon Sep 17 00:00:00 2001 From: xoviat Date: Tue, 31 Oct 2017 16:56:44 -0500 Subject: [PATCH] [appveyor] move installation to install section --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 46c40f74d..cef130e3d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -38,12 +38,12 @@ install: - if [%COMPILER%]==[clang-cl] conda config --add channels conda-forge --force - if [%COMPILER%]==[clang-cl] conda install --yes clangdev ninja cmake - if [%COMPILER%]==[clang-cl] call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 + - pip install -q git+https://github.com/xoviat/clcache.git@findCompiler before_build: - echo Running cmake... - cd c:\projects\OpenBLAS - set CLCACHE_CL=%COMPILER% - - pip install -q git+https://github.com/xoviat/clcache.git@findCompiler - if [%COMPILER%]==[cl] cmake -G "Visual Studio 12 Win64" -DCMAKE_CXX_COMPILER=clcache -DCMAKE_C_COMPILER=clcache . - if [%COMPILER%]==[clang-cl] cmake -G "Ninja" -DCMAKE_CXX_COMPILER=clcache -DCMAKE_C_COMPILER=clcache . - if [%DYNAMIC_ARCH%]==[ON] cmake -DDYNAMIC_ARCH=ON .