~widelands-dev/widelands/ai_for_mods

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
language: cpp
script: bash -e .travis.sh
sudo: required
dist: trusty

before_script:
  - "export DISPLAY=:99.0"
  - "sh -e /etc/init.d/xvfb start"
  - sleep 3 # give xvfb some time to start

# ignore this branch because it is only a mirror of master
branches:
  except:
    - _widelands_dev_widelands_trunk

matrix:
  include:
     - compiler: clang
       env: CLANG_VERSION="3.4" BUILD_TYPE="Debug"
     - compiler: clang
       env: CLANG_VERSION="3.5" BUILD_TYPE="Debug"
     - compiler: clang
       env: CLANG_VERSION="3.6" BUILD_TYPE="Debug"
     - compiler: clang
       env: CLANG_VERSION="3.7" BUILD_TYPE="Debug"
     - compiler: clang
       env: CLANG_VERSION="3.8" BUILD_TYPE="Debug"
     - compiler: clang
       env: CLANG_VERSION="3.9" BUILD_TYPE="Debug"
     - compiler: clang
       env: CLANG_VERSION="3.4" BUILD_TYPE="Release"
     - compiler: clang
       env: CLANG_VERSION="3.5" BUILD_TYPE="Release"
     - compiler: clang
       env: CLANG_VERSION="3.6" BUILD_TYPE="Release"
     - compiler: clang
       env: CLANG_VERSION="3.7" BUILD_TYPE="Release"
     - compiler: clang
       env: CLANG_VERSION="3.8" BUILD_TYPE="Release"
     - compiler: clang
       env: CLANG_VERSION="3.9" BUILD_TYPE="Release"
     - compiler: gcc
       env: GCC_VERSION="4.7" BUILD_TYPE="Debug"
     - compiler: gcc
       env: GCC_VERSION="4.8" BUILD_TYPE="Debug"
     - compiler: gcc
       env: GCC_VERSION="4.9" BUILD_TYPE="Debug"
     - compiler: gcc
       env: GCC_VERSION="5" BUILD_TYPE="Debug"
     - compiler: gcc
       env: GCC_VERSION="6" BUILD_TYPE="Debug"
     - compiler: gcc
       env: GCC_VERSION="4.7" BUILD_TYPE="Release"
     - compiler: gcc
       env: GCC_VERSION="4.8" BUILD_TYPE="Release"
     - compiler: gcc
       env: GCC_VERSION="4.9" BUILD_TYPE="Release"
     - compiler: gcc
       env: GCC_VERSION="5" BUILD_TYPE="Release"
     - compiler: gcc
       env: GCC_VERSION="6" BUILD_TYPE="Release"