forked from OpenVPN/openvpn-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (43 loc) · 1.15 KB
/
.travis.yml
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
sudo: required
dist: bionic
os: linux
language: cpp
compiler: gcc
addons:
apt:
packages: [ man2html, dos2unix, nsis, gcc-mingw-w64, python-docutils ]
env:
global:
- CBUILD=x86_64-pc-linux-gnu
- SCRIPT=generic/build
matrix:
fast_finish: true
include:
- compiler: ": Win32"
env: CHOST=i686-w64-mingw32
- compiler: ": Win64"
env: CHOST=x86_64-w64-mingw32
- compiler: ": Win32 + static"
env: DO_REALLY_STATIC=1 CHOST=i686-w64-mingw32
- compiler: ": Win64 + static"
env: DO_REALLY_STATIC=1 CHOST=x86_64-w64-mingw32
- compiler: ": Win32 + depcache"
env: CHOST=i686-w64-mingw32
script:
- generic/build --save-depcache=travis
- generic/build --use-depcache=travis
- compiler: ": Win64 + depcache"
env: CHOST=x86_64-w64-mingw32
script:
- generic/build --save-depcache=travis
- generic/build --use-depcache=travis
- compiler: ": snapshot"
env: SCRIPT=windows-nsis/build-snapshot
- compiler: ": complete"
env: SCRIPT=windows-nsis/build-complete
exclude:
- compiler: gcc
before_script:
- unset CC; unset CXX
script:
- $SCRIPT