X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e42cbecf66f7a4379b7cf8394a2eec507b37930..36685edf60934697a3fa796b0f00c76b3ed3fb90:/.appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml index 07a609fdd0..c0bd725fbb 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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\eigen3" . +- 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