Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2d4894f6235dbff25e9a97dbecbfd6493d07fec2
[simgrid.git] / appveyor.yml
1 # This file automatize the testing of SimGrid on Windows using the appveyor.com continuous integration service
2 #
3 # Build logs: https://ci.appveyor.com/project/mquinson/simgrid
4
5 os: Visual Studio 2015
6 version: "{build}"
7 clone_depth: 1
8
9 # scripts that are called at very beginning, before repo cloning
10 init:
11 - git config --global core.longpaths true
12 - git config --global core.autocrlf input
13
14 environment:
15   global:
16     BOOST_ROOT: c:\Libraries\boost
17     BOOST_LIBRARYDIR: c:\Libraries\boost\stage\lib
18     TESH_ARGS: C:/projects/simgrid/bin/tesh --setenv srcdir=C:/projects/simgrid/examples/java --setenv classpath=C:/projects/simgrid/examples/java;C:/projects/simgrid/teshsuite/java;C:/projects/simgrid/simgrid.jar --cd C:/projects/simgrid/examples/java
19   matrix:
20     - COMPILER: MinGW-w64
21
22 install:
23 # Sane migwin, as installed by symengine
24 #- if [%COMPILER%]==[MinGW-w64] call .appveyor-download.cmd "https://raw.githubusercontent.com/symengine/dependencies/5cff7d1736877336cf9fb58267111beea4fa152f/x86_64-4.9.1-release-posix-seh-rt_v3-rev1.7z" -FileName mw64.7z
25 #- if [%COMPILER%]==[MinGW-w64] 7z x -oC:\ mw64.7z > NUL
26 # Take the newly installed stuff in the path
27 #- set PATH=C:\mingw64\bin;%PATH%
28 # Strawberry perl is the one to work with gcc
29 - choco install strawberryperl -version 5.20.1.1
30 - SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
31 - cpanm --notest --quiet Win32API::File
32 - cpanm --notest --quiet IPC::Run
33 # Lua 
34 #- choco install lua53
35 # Basic dependencies: gcc and Cmake (must be placed before Perl in the path)
36 - choco install mingw cmake
37 - rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe"
38 - SET PATH=C:\tools\mingw64\bin;%PATH%
39
40 build_script:
41 - cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .
42 - C:\tools\mingw64\bin\mingw32-make.exe VERBOSE=1
43 - cd C:/projects/simgrid/examples/java && java -classpath ".;../../simgrid.jar" masterslave.Masterslave ../platforms/platform.xml masterslave/masterslaveDeployment.xml || true
44
45 # I cant use the cmake test because of the following error:
46 #   Test project C:/projects/simgrid
47 #        Start   1: mc-replay-random-bug
48 #   ^CTerminate batch job (Y/N)?
49 # How dafuq am I supposed to press N on appveyor?? I tried closing stdin, in vain
50 #- bash -c "cd C:/projects/simgrid; exec 0<&-; ctest --output-on-failure" < nul || true
51
52 #test_script:
53 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/async/async.tesh
54 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/bittorrent/bittorrent.tesh
55 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/master_slave_bypass/bypass.tesh
56 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/chord/chord.tesh
57 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/cloud/cloud.tesh
58 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/cloud/migration/migration.tesh
59 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/commTime/commtime.tesh
60 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/kademlia/kademlia.tesh
61 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/master_slave_kill/kill.tesh
62 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/masterslave/masterslave.tesh
63 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/migration/migration.tesh
64 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/mutualExclusion/mutualexclusion.tesh
65 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/pingPong/pingpong.tesh
66 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/priority/priority.tesh
67 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/startKillTime/startKillTime.tesh
68 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/suspend/suspend.tesh
69 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/tracing/tracingPingPong.tesh
70
71 artifacts:
72 - path: simgrid.jar
73   name: jarfile
74
75 # notifications:
76 # - irc: "irc.debian.org#simgrid" # Not implemented by AppVeyor yet :(
77 # Some source of inspiration:
78
79 # https://github.com/sympy/symengine/blob/master/appveyor.yml <- MS, mingw & mingw64
80
81 # https://github.com/dartsim/dart/blob/master/appveyor.yml
82 # https://github.com/osmcode/libosmium/blob/master/appveyor.yml
83 # https://github.com/polysquare/cmake-unit/blob/master/appveyor.yml
84 # https://github.com/openvswitch/ovs/blob/master/appveyor.yml
85
86 # https://github.com/behdad/harfbuzz/pull/112/files