File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ skip_commits:
23
23
# Add [av skip] to commit messages
24
24
message : /\[av skip\]/
25
25
26
+ cache :
27
+ - ' %APPVEYOR_BUILD_FOLDER%\build'
28
+
26
29
environment :
27
30
global :
28
31
CONDA_INSTALL_LOCN : C:\\Miniconda36-x64
@@ -44,12 +47,12 @@ install:
44
47
- if [%COMPILER%]==[clang-cl] set "CPATH=%CONDA_INSTALL_LOCN%\Library\include;%CPATH%"
45
48
46
49
before_build :
47
- - echo Running cmake...
48
- - cd c:\projects\OpenBLAS
49
- - if [%COMPILER%]==[cl] cmake -G "Visual Studio 12 Win64" .
50
- - if [%WITH_FORTRAN%]==[no] cmake -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl .
51
- - if [%WITH_FORTRAN%]==[yes] cmake -G "NMake Makefiles" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl -DCMAKE_Fortran_COMPILER=flang -DBUILD_WITHOUT_LAPACK=no -DNOFORTRAN=0 .
52
- - if [%DYNAMIC_ARCH%]==[ON] cmake -DDYNAMIC_ARCH=ON .
50
+ - ps : if (-Not (Test-Path .\build)) { mkdir build }
51
+ - cd build
52
+ - if [%COMPILER%]==[cl] cmake -G "Visual Studio 12 Win64" ..
53
+ - if [%WITH_FORTRAN%]==[no] cmake -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl ..
54
+ - if [%WITH_FORTRAN%]==[yes] cmake -G "NMake Makefiles" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl -DCMAKE_Fortran_COMPILER=flang -DBUILD_WITHOUT_LAPACK=no -DNOFORTRAN=0 ..
55
+ - if [%DYNAMIC_ARCH%]==[ON] cmake -DDYNAMIC_ARCH=ON ..
53
56
54
57
build_script :
55
58
- cmake --build .
You can’t perform that action at this time.
0 commit comments