Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mc/compare: reduce the scope of some variables
[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/simgrid/simgrid
4
5 # Documentation: https://www.appveyor.com/docs/
6 #                https://www.appveyor.com/docs/installed-software/
7
8 image:
9   - Visual Studio 2015
10 #  - Ubuntu
11
12 version: "{build}"
13 clone_depth: 1
14
15 # scripts that are called at very beginning, before repo cloning
16 init:
17 - git config --global core.longpaths true
18 - git config --global core.autocrlf input
19
20 branches:
21   only:
22      - master
23      - appveyor
24
25 environment:
26   global:
27     BOOST_ROOT: C:\Libraries\boost_1_60_0
28
29 install:
30 # Strawberry perl is the one to work with gcc; AppVeyor provides ActiveState perl, which is the one to work with visual.
31 # This package is so outdated and broken that we cannot use it anymore. So we build without perl
32 # - choco install --limit-output strawberryperl --version 5.20.1.1
33 # - SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
34 # Lua 
35 #- choco install lua53
36 # We need python v3
37 - cmd: SET PATH=C:\Python37-x64;%PATH% # We need python v3
38 # Use the mingw-w64 provided by Appveyor (must be placed before Perl in the path)
39 - cmd: SET PATH=C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin\;%PATH%
40 # Work around a bug on appveyor where the default sh is not the one I expect
41 - rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe"
42 # We need pybind11. SimGrid will pick it automatically if the subdir is here
43 - cmd: git clone --depth=1 https://github.com/pybind/pybind11.git
44
45 build_script:
46 - cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_documentation=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .
47 - mingw32-make.exe VERBOSE=1 java-all python-bindings # Only the Java and Python parts
48 - ctest --output-on-failure -R java
49 # Don't test python, as pybind11 seems too complex for mingw for now (mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1)
50 # The observed failure is around the ForcefulKill exception, that seems badly caught somehow.
51 # - ctest --output-on-failure -R python
52
53 artifacts:
54 - path: simgrid.jar
55   name: jarfile
56
57 # IRC notifications, even if https://github.com/appveyor/ci/issues/88 is not closed yet
58 on_failure:
59   - "python tools/appveyor-irc-notify.py simgrid [{project_name}:{branch}] {short_commit}: \"{message}\" ({author}) {color_red}Failed,Details: {build_url},Commit: {commit_url}"
60 #on_success:
61 #  - "python tools/appveyor-irc-notify.py simgrid [{project_name}:{branch}] {short_commit}: \"{message}\" ({author}) {color_green}Succeeded,Details: {build_url},Commit: {commit_url}"