Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'faster_activity_removal' into 'master'
[simgrid.git] / .appveyor.yml
index 644921a..c0bd725 100644 (file)
@@ -37,6 +37,7 @@ install:
 - rename "C:\Python38-x64\python.exe" "python-ignored.exe"
 - rename "C:\Python39-x64\python.exe" "python-ignored.exe"
 - rename "C:\Python310-x64\python.exe" "python-ignored.exe"
+- rename "C:\Python311-x64\python.exe" "python-ignored.exe"
 # Use the mingw-w64 provided by Appveyor (must be placed before Perl in the path)
 - cmd: SET PATH=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin\;%PATH%
 # Work around a bug on appveyor where the default sh is not the one I expect
@@ -51,13 +52,13 @@ before_build:
             cd eigen-3.4.0 &&
             mkdir build &&
             cd build &&
-            cmake -G "Visual Studio 16 2019"  .. &&
+            cmake -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=C:\projects .. &&
             cmake --build . --target install &&
             cd ..\..
          ) else (echo Using cached Eigen3)
 
 build_script:
-- cmake -G "MinGW Makefiles" -Denable_documentation=OFF -Denable_java=ON -Denable_msg=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF -DEIGEN3_INCLUDE_DIR="C:\Program Files\Eigen\include\" .
+- cmake -G "MinGW Makefiles" -Denable_documentation=OFF -Denable_java=ON -Denable_msg=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .
 - mingw32-make.exe VERBOSE=1 java-all python-bindings # Only the Java and Python parts
 - ctest --output-on-failure -R java
 - ctest --output-on-failure -R python