forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
93 lines (93 loc) · 2.46 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
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
language: c
os: linux
dist: bionic
addons:
apt:
packages:
- flex
- bison
- libsqlite3-dev
- libsctp-dev
- libradcli-dev
- libhiredis-dev
- unixodbc-dev
- libconfuse-dev
- libmysqlclient-dev
- libexpat1-dev
- libxml2-dev
- libpq-dev
- zlib1g-dev
- libperl-dev
- libsnmp-dev
- libdb-dev
- libldap2-dev
- libcurl4-gnutls-dev
- libgeoip-dev
- libpcre3-dev
- libmemcached-dev
- libmicrohttpd-dev
- librabbitmq-dev
- liblua5.1-0-dev
- libncurses5-dev
- libjson-c-dev
- uuid-dev
- python-dev
- libmaxminddb-dev
# - libjwt-dev
before_install: sh -x scripts/build/install_depends.sh
script: sh -x scripts/build/do_build.sh
notifications:
irc:
channels:
- "chat.freenode.net#opensips"
on_success: change
on_failure: always
slack:
secure: MnRvw68QpJHUSZ/IRGUlAjQ62xs3LtEZ0g3pG7Bms0XotuK+YxmSZh7BgV61utuya295LTvdWZQYiutJ4+iPKdF7Mb1KCzaUbY6nrGaIbqif10CKwfIFRsENMhYUKOXdvg52103GNq3/V3/6PGX7Jtiaox9lHcfRhvljs+cUgSk=
on_success: change
on_failure: always
jobs:
include:
- name: "Build with GCC 7 @ Ubuntu 16"
dist: xenial
compiler: gcc
env: COMPILER=gcc
- name: "Build with Clang 7 @ Ubuntu 16"
dist: xenial
compiler: clang
env: COMPILER=clang
- name: "Build with GCC 7 @ Ubuntu 18"
compiler: gcc
env: COMPILER=gcc
- name: "Build with GCC 9 @ Ubuntu 18"
compiler: gcc
env: COMPILER=gcc-9
- name: "Build with GCC 10 @ Ubuntu 18"
compiler: gcc
env: COMPILER=gcc-10
- name: "Build with Clang 7 @ Ubuntu 18"
compiler: clang
env: COMPILER=clang
- name: "Build with Clang 9 @ Ubuntu 18"
compiler: clang
env: COMPILER=clang-9
- name: "Build with Clang 10 @ Ubuntu 18"
compiler: clang
env: COMPILER=clang-10
- name: "Build with GCC 7 @ Ubuntu 18 (ARM64)"
compiler: gcc
arch: arm64
env: COMPILER=gcc
- name: "Build with Clang 7 @ Ubuntu 18 (ARM64)"
compiler: clang
arch: arm64
env: COMPILER=clang
- name: "Build Core with GCC 7 @ Ubuntu 18 (i386)"
compiler: gcc
env: COMPILER=gcc-i386-cross
- name: "Build Core with Clang 7 @ Ubuntu 18 (i386)"
compiler: clang
env: COMPILER=clang-i386-cross
- name: "Build Core with GCC 7 @ Ubuntu 18 (MIPS64)"
compiler: gcc
env: COMPILER=gcc-mips64-cross