X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/11a69377eaa38a708b4576964fec192b93e5cede..f603241826db5fd6fa4fc263d578de9fa58c70d0:/appveyor.yml diff --git a/appveyor.yml b/appveyor.yml index a8ba39978d..0e7ad9518d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ # This file automatize the testing of SimGrid on Windows using the appveyor.com continuous integration service # -# Build logs: https://ci.appveyor.com/project/mquinson/simgrid +# Build logs: https://ci.appveyor.com/project/simgrid/simgrid os: Visual Studio 2015 version: "{build}" @@ -31,6 +31,8 @@ install: - rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe" build_script: +- SET CFLAGS=-Wno-deprecated-declarations # ignore C:/Libraries/boost_1_59_0/boost/smart_ptr/shared_ptr.hpp:461:22: warning: 'template class std::auto_ptr' is deprecated [-Wdeprecated-declarations] +- SET CPPFLAGS=-Wno-deprecated-declarations # ignore issues within boost - cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF . - C:\tools\mingw64\bin\mingw32-make.exe VERBOSE=1 - cd C:/projects/simgrid/examples/java && java -classpath ".;../../simgrid.jar" masterslave.Masterslave ../platforms/platform.xml masterslave/masterslaveDeployment.xml || true