Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bcast on one process is a no-op
[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_1_59_0
17     BOOST_LIBRARYDIR: c:\Libraries\boost_1_59_0\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
20 install:
21 # Strawberry perl is the one to work with gcc
22 - choco install --limit-output strawberryperl -version 5.20.1.1
23 - SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
24 - cpanm --notest --quiet Win32API::File
25 - cpanm --notest --quiet IPC::Run
26 # Lua 
27 #- choco install lua53
28 # Basic dependencies: gcc and Cmake (must be placed before Perl in the path)
29 - SET PATH=C:\tools\mingw64\bin;%PATH%
30 - choco install --limit-output mingw cmake
31 - rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe"
32
33 build_script:
34 - SET CFLAGS=-Wno-deprecated-declarations   # ignore C:/Libraries/boost_1_59_0/boost/smart_ptr/shared_ptr.hpp:461:22: warning: 'template<class> class std::auto_ptr' is deprecated [-Wdeprecated-declarations]
35 - SET CPPFLAGS=-Wno-deprecated-declarations # ignore issues within boost
36 - cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .
37 - C:\tools\mingw64\bin\mingw32-make.exe VERBOSE=1
38 - cd C:/projects/simgrid/examples/java && java -classpath ".;../../simgrid.jar" masterslave.Masterslave ../platforms/platform.xml masterslave/masterslaveDeployment.xml || true
39
40 # I cant use the cmake test because of the following error:
41 #   Test project C:/projects/simgrid
42 #        Start   1: mc-replay-random-bug
43 #   ^CTerminate batch job (Y/N)?
44 # How dafuq am I supposed to press N on appveyor?? I tried closing stdin, in vain
45 #- bash -c "cd C:/projects/simgrid; exec 0<&-; ctest --output-on-failure" < nul || true
46
47 #test_script:
48 # find  examples/java -name '*tesh'|sed 's|^|- perl %TESH_ARGS% C:/projects/simgrid/|' |sort
49 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/app/bittorrent/app_bittorrent.tesh
50 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/app/centralizedmutex/app_centralizedmutex.tesh
51 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/app/masterworker/app_masterworker.tesh
52 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/app/pingpong/app_pingpong.tesh
53 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/async/dsend/async_dsend.tesh
54 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/cloud/masterworker/cloud_masterworker.tesh
55 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/cloud/migration/cloud_migration.tesh
56 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/dht/chord/dht_chord.tesh
57 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/dht/kademlia/dht_kademlia.tesh
58 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/energy/consumption/energy_consumption.tesh
59 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/energy/vm/energy_vm.tesh
60 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/io/file/io_file.tesh
61 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/io/storage/io_storage.tesh
62 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/process/kill/process_kill.tesh
63 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/process/migration/process_migration.tesh
64 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/process/startkilltime/process_startkilltime.tesh
65 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/process/suspend/process_suspend.tesh
66 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/task/priority/task_priority.tesh
67 - perl %TESH_ARGS% C:/projects/simgrid/examples/java/trace/pingpong/trace_pingpong.tesh
68
69 artifacts:
70 - path: simgrid.jar
71   name: jarfile
72
73 # notifications:
74 # - irc: "irc.debian.org#simgrid" # Not implemented by AppVeyor yet :(
75 # Some source of inspiration:
76
77 # https://github.com/sympy/symengine/blob/master/appveyor.yml <- MS, mingw & mingw64
78
79 # https://github.com/dartsim/dart/blob/master/appveyor.yml
80 # https://github.com/osmcode/libosmium/blob/master/appveyor.yml
81 # https://github.com/polysquare/cmake-unit/blob/master/appveyor.yml
82 # https://github.com/openvswitch/ovs/blob/master/appveyor.yml
83
84 # https://github.com/behdad/harfbuzz/pull/112/files