summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-22 23:15:47 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-22 23:15:47 +0200
commitaf16c88ae6ce14ecaf232f3afae0b95e25f30203 (patch)
tree606c5ea63fb109b821d513c6f2843609673e0e04 /.appveyor.yml
parent91c5de6279c95081661b4af64c429d14da3b1edc (diff)
roll back and remove cache as cgal is only 4.13
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 82159b24..794a448d 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -30,9 +30,9 @@ environment:
PYTHON: "C:\\Python37-x64"
-cache:
- - c:\Tools\vcpkg\installed
- - '%LOCALAPPDATA%\pip\Cache'
+# cache:
+# - c:\Tools\vcpkg\installed
+# - '%LOCALAPPDATA%\pip\Cache'
init:
- echo %target%
@@ -57,7 +57,8 @@ build_script:
- cd build
- cmake -G "Visual Studio 15 2017 Win64" %CMAKE_FLAGS% -DGMP_INCLUDE_DIR="c:/Tools/vcpkg/installed/x64-windows/include" -DGMP_LIBRARIES="c:/Tools/vcpkg/installed/x64-windows/lib/mpir.lib" -DMPFR_INCLUDE_DIR="c:/Tools/vcpkg/installed/x64-windows/include" -DMPFR_LIBRARIES="c:/Tools/vcpkg/installed/x64-windows/lib/mpfr.lib" -DCMAKE_TOOLCHAIN_FILE=c:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
- if [%target%]==[Python] (
- MSBuild GUDHIdev.sln /m /p:Configuration=Release /p:Platform=x64 &
+ cd src/python &
+ MSBuild Cython.sln /m /p:Configuration=Release /p:Platform=x64 &
ctest -j 1 --output-on-failure -C Release
) else (
MSBuild GUDHIdev.sln /m /p:Configuration=Release /p:Platform=x64 &