@@ -5,18 +5,19 @@ name: unit-tests
5
5
steps :
6
6
- name : bootstrap
7
7
image : signalwire/freeswitch-public-base
8
- pull : true
8
+ pull : always
9
9
commands :
10
10
- cat /proc/sys/kernel/core_pattern
11
11
- ./bootstrap.sh -j
12
12
13
13
- name : configure
14
14
image : signalwire/freeswitch-public-base
15
- pull : true
15
+ pull : always
16
16
commands :
17
- - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
18
- - DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
19
- - echo "applications/mod_test" >> modules.conf
17
+ - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libsofia-sip-ua0 libspandsp-dev
18
+ - DEBIAN_FRONTEND=noninteractive apt-get -yq install libspandsp3-dev
19
+ - git clone https://github.com/freeswitch/sofia-sip.git
20
+ - cd sofia-sip && ./autogen.sh && ./configure.gnu && make -j`nproc` && make install && cd ..
20
21
- echo 'codecs/mod_openh264' >> modules.conf
21
22
- sed -i '/applications\\/mod_http_cache/s/^#//g' modules.conf
22
23
- sed -i '/event_handlers\\/mod_rayo/s/^#//g' modules.conf
@@ -27,20 +28,22 @@ steps:
27
28
28
29
- name : build
29
30
image : signalwire/freeswitch-public-base
30
- pull : true
31
+ pull : always
31
32
commands :
32
- - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
33
- - DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
33
+ - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libsofia-sip-ua0 libspandsp-dev
34
+ - DEBIAN_FRONTEND=noninteractive apt-get -yq install libspandsp3-dev
35
+ - cd sofia-sip && make install && cd ..
34
36
- echo '#!/bin/bash\nmake -j`nproc --all` |& tee ./unit-tests-build-result.txt\nexitstatus=$${PIPESTATUS[0]}\necho $$exitstatus > ./build-status.txt\n' > build.sh
35
37
- chmod +x build.sh
36
38
- ./build.sh
37
39
38
40
- name : run-tests
39
41
image : signalwire/freeswitch-public-base
40
- pull : true
42
+ pull : always
41
43
commands :
42
- - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
43
- - DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
44
+ - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libsofia-sip-ua0 libspandsp-dev
45
+ - DEBIAN_FRONTEND=noninteractive apt-get -yq install libspandsp3-dev
46
+ - cd sofia-sip && make install && cd ..
44
47
- make install || true
45
48
- cd tests/unit
46
49
- ./run-tests.sh
@@ -53,15 +56,15 @@ steps:
53
56
54
57
- name : notify
55
58
image : signalwire/drone-notify
56
- pull : true
59
+ pull : always
57
60
environment :
58
61
SLACK_WEBHOOK_URL :
59
62
from_secret : slack_webhook_url
60
63
ENV_FILE :
61
64
from_secret : notify_env
62
65
commands :
63
66
- /root/unit-tests-notify.sh
64
-
67
+
65
68
trigger :
66
69
branch :
67
70
- master
@@ -75,14 +78,14 @@ name: scan-build
75
78
76
79
steps :
77
80
- name : bootstrap
78
- image : signalwire/freeswitch-public-base:stretch
79
- pull : true
81
+ image : signalwire/freeswitch-public-base
82
+ pull : always
80
83
commands :
81
84
- ./bootstrap.sh -j
82
85
83
86
- name : configure
84
- image : signalwire/freeswitch-public-base:stretch
85
- pull : true
87
+ image : signalwire/freeswitch-public-base
88
+ pull : always
86
89
commands :
87
90
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
88
91
- DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
@@ -112,21 +115,21 @@ steps:
112
115
- ./configure
113
116
114
117
- name : scan-build
115
- image : signalwire/freeswitch-public-base:stretch
116
- pull : true
118
+ image : signalwire/freeswitch-public-base
119
+ pull : always
117
120
commands :
118
121
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
119
122
- DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
120
123
- mkdir -p scan-build
121
- - echo '#!/bin/bash\nscan-build-4.0 -o ./scan-build/ make -j`nproc --all` |& tee ./scan-build-result.txt\nexitstatus=$${PIPESTATUS[0]}\necho $$exitstatus > ./scan-build-status.txt\n' > scan.sh
124
+ - echo '#!/bin/bash\nscan-build-7 -o ./scan-build/ make -j`nproc --all` |& tee ./scan-build-result.txt\nexitstatus=$${PIPESTATUS[0]}\necho $$exitstatus > ./scan-build-status.txt\n' > scan.sh
122
125
- chmod +x scan.sh
123
126
- ./scan.sh
124
127
- exitstatus=`cat ./scan-build-status.txt`
125
128
- echo "*** Exit status is $exitstatus"
126
129
127
130
- name : notify
128
131
image : signalwire/drone-notify
129
- pull : true
132
+ pull : always
130
133
environment :
131
134
SLACK_WEBHOOK_URL :
132
135
from_secret : slack_webhook_url
@@ -135,7 +138,6 @@ steps:
135
138
commands :
136
139
- /root/scan-build-notify.sh
137
140
138
-
139
141
trigger :
140
142
branch :
141
143
- master
@@ -145,6 +147,6 @@ trigger:
145
147
146
148
---
147
149
kind : signature
148
- hmac : af77439b382612b49140cb95f04d6d695e0a188c411ae227abcba205bf96bab9
150
+ hmac : a85b0db203d2c9a71c3e4a63a46b5513fbdb3b8f5135e21d0fe0992f33626824
149
151
150
152
...
0 commit comments