aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/ci/travis.yml
blob: 52c64354fc0c805a3ddb8d03a36c815915806869 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
language: cpp

sudo: required

env:
  global:
    - CCACHE_MAXSIZE=1G

jobs:
  include:
    - os: linux
      dist: bionic
      name: Linux/GCC
      compiler: gcc
      env:
       - TARGET="shared"

    - os: linux
      dist: bionic
      name: Linux/Clang
      compiler: clang
      env:
       - TARGET="shared"

    - os: linux
      dist: xenial
      name: Coverage
      compiler: gcc
      env:
       - TARGET="coverage"

    - os: linux
      dist: bionic
      arch: arm64
      name: Fuzzers
      compiler: gcc
      env:
       - TARGET="fuzzers"

    - os: linux
      dist: bionic
      name: Valgrind
      compiler: gcc
      env:
       - TARGET="valgrind"

    - os: linux
      dist: bionic
      name: Linux arm64
      arch: arm64
      compiler: gcc
      env:
       - TARGET="shared"

    - os: linux
      dist: bionic
      name: Linux ppc64le
      arch: ppc64le
      compiler: gcc
      env:
       - TARGET="shared"

    - os: linux
      dist: bionic
      name: Linux i386 cross
      compiler: gcc
      env:
       - TARGET="cross-i386"

    - os: linux
      dist: xenial
      name: Linux ppc32 cross
      compiler: gcc
      env:
       - TARGET="cross-ppc32"

    - os: linux
      dist: bionic
      name: Linux arm32 cross
      compiler: gcc
      env:
       - TARGET="cross-arm32"

    - os: linux
      dist: xenial
      name: Linux mips64 cross
      compiler: gcc
      env:
       - TARGET="cross-mips64"

    - os: linux
      dist: bionic
      name: Android arm32 cross
      compiler: clang
      env:
       - TARGET="cross-android-arm32"
       - ANDROID_NDK=android-ndk-r20

    - os: linux
      dist: bionic
      name: Android arm64 cross
      compiler: clang
      env:
       - TARGET="cross-android-arm64"
       - ANDROID_NDK=android-ndk-r20

    - os: linux
      dist: bionic
      name: MinGW x86-64 cross
      compiler: gcc
      env:
       - TARGET="cross-win64"

    - os: osx
      name: macOS
      compiler: clang
      env:
       - TARGET="shared"

    - os: osx
      name: iOS
      compiler: clang
      env:
       - TARGET="cross-arm64"

    - os: linux
      dist: bionic
      name: Linux GCC 4.8
      compiler: gcc
      env:
       - TARGET="gcc4.8"

    - os: linux
      dist: bionic
      name: Minimized
      compiler: gcc
      env:
       - TARGET="mini-shared"

    - os: linux
      dist: bionic
      name: BSI policy
      compiler: gcc
      env:
       - TARGET="bsi"

    - os: linux
      dist: bionic
      name: NIST policy
      compiler: gcc
      env:
       - TARGET="nist"

    - os: linux
      dist: bionic
      name: Pylint
      compiler: gcc
      env:
       - TARGET="lint"

    - os: linux
      dist: bionic
      name: Documentation
      compiler: gcc
      env:
       - TARGET="docs"

install:
  - ./src/scripts/ci/setup_travis.sh

script:
  - ./src/scripts/ci_build.py --os=$TRAVIS_OS_NAME --cc=$CC --cc-bin=$CXX --without-pylint3 --pkcs11-lib=/usr/lib/softhsm/libsofthsm2.so $TARGET

# whitelist branches to avoid testing feature branches twice (as branch and as pull request)
branches:
  only:
    - master
    - release-2
    - coverity_scan

git:
  depth: 10

cache:
  ccache: true

addons:
  coverity_scan:
    project:
      name: "randombit/botan"
    notification_email: jack@randombit.net
    build_command_prepend: "./configure.py --no-optimizations --with-zlib --with-openssl"
    build_command: "make -j2"
    branch_pattern: coverity_scan