X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5314c11a8374dce923057f72fab34d0c802628d8..77f80810f9d10d10663a146ef14b3b0f9bf3895a:/appveyor.yml diff --git a/appveyor.yml b/appveyor.yml index 9438cb2595..68e80eed64 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,17 +5,24 @@ os: Visual Studio 2015 version: "{build}" clone_depth: 1 +# scripts that are called at very beginning, before repo cloning +init: +- cmake --version +- msbuild /version +- git config --global core.longpaths true +- git config --global core.autocrlf input + platform: - - Win32 # This is Windows 32bits (don't activate since we dont compile properly anyway) + - Win32 # This is Windows 32bits # - x64 # This is Windows 64bits environment: BOOST_ROOT: c:\Libraries\boost BOOST_LIBRARYDIR: c:\Libraries\boost\stage\lib - + build_script: -- if [%PLATFORM%]==[Win32] cmake -G "Visual Studio 14 2015" -DCMAKE_CXX_FLAGS_RELEASE="/MT /W1 /O2 /Ob2 /D NDEBUG" -DCMAKE_CXX_FLAGS_DEBUG="/D_DEBUG /MTd /Zi /Ob0 /Od /RTC1 /W1" . -- if [%PLATFORM%]==[x64] cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_CXX_FLAGS_RELEASE="/MT /W1 /O2 /Ob2 /D NDEBUG" -DCMAKE_CXX_FLAGS_DEBUG="/D_DEBUG /MTd /Zi /Ob0 /Od /RTC1 /W1" . +- if [%PLATFORM%]==[Win32] cmake -G "Visual Studio 14 2015" -Denable_smpi=OFF . +- if [%PLATFORM%]==[x64] cmake -G "Visual Studio 14 2015 Win64" -Denable_smpi=OFF . - msbuild ALL_BUILD.vcxproj /verbosity:normal test_script: