Skip to content

Commit 25569c1

Browse files
committed
Merge branch 'master' into v1.10
2 parents 133fc2c + 8beac6c commit 25569c1

File tree

15 files changed

+1941
-129
lines changed

15 files changed

+1941
-129
lines changed

.drone.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ steps:
1414
image: signalwire/freeswitch-public-base
1515
pull: true
1616
commands:
17-
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp-dev
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
1819
- echo "applications/mod_test" >> modules.conf
1920
- echo 'codecs/mod_openh264' >> modules.conf
2021
- sed -i '/applications\\/mod_http_cache/s/^#//g' modules.conf
@@ -28,7 +29,8 @@ steps:
2829
image: signalwire/freeswitch-public-base
2930
pull: true
3031
commands:
31-
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp-dev
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
3234
- echo '#!/bin/bash\nmake -j`nproc --all` |& tee ./unit-tests-build-result.txt\nexitstatus=$${PIPESTATUS[0]}\necho $$exitstatus > ./build-status.txt\n' > build.sh
3335
- chmod +x build.sh
3436
- ./build.sh
@@ -37,7 +39,8 @@ steps:
3739
image: signalwire/freeswitch-public-base
3840
pull: true
3941
commands:
40-
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp-dev
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
4144
- make install || true
4245
- cd tests/unit
4346
- ./run-tests.sh
@@ -83,7 +86,8 @@ steps:
8386
image: signalwire/freeswitch-public-base:stretch
8487
pull: true
8588
commands:
86-
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp-dev
89+
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
90+
- DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
8791
- cp build/modules.conf.most modules.conf
8892
#Enable/Uncomment mods
8993
- echo 'codecs/mod_openh264' >> modules.conf
@@ -113,7 +117,8 @@ steps:
113117
image: signalwire/freeswitch-public-base:stretch
114118
pull: true
115119
commands:
116-
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp-dev
120+
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq remove libspandsp-dev
121+
- DEBIAN_FRONTEND=noninteractive apt-get -yq install libsofia-sip-ua-dev libspandsp3-dev
117122
- mkdir -p scan-build
118123
- 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
119124
- chmod +x scan.sh
@@ -144,6 +149,6 @@ trigger:
144149

145150
---
146151
kind: signature
147-
hmac: c48137f0dee8c2825711979e2c490367a2467a92866d3dfa11cf340a113dbf53
152+
hmac: 847aeb3791f682fe44b2e401a7a2b6ebbf06830e67046745459a31b32a7da2f3
148153

149154
...

.github/ISSUE_TEMPLATE/bug_report.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Using this example configuration...
16+
2. Dial into conference using verto
17+
3. Play my_problem_file.mp4 into conference
18+
4. FreeSWITCH crashes
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Package version or git hash**
24+
- Version [e.g. 1.10.4]
25+
26+
**Trace logs**
27+
Provide freeswitch logs w/ DEBUG and UUID logging enabled
28+
29+
**backtrace from core file**
30+
If applicable, provide the full backtrace from the core file.
31+
```
32+
(gdb) set pagination off
33+
(gdb) set logging file /tmp/backtrace.log
34+
(gdb) set logging on
35+
Copying output to /tmp/backtrace.log.
36+
(gdb) bt
37+
(gdb) bt full
38+
(gdb) info threads
39+
(gdb) thread apply all bt
40+
(gdb) thread apply all bt full
41+
(gdb) set logging off
42+
Done logging to /tmp/backtrace.log.
43+
(gdb) quit
44+
```
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
<!--FreeSWITCH features are generally contributed by the community. If you are a developer and want to add a feature to FreeSWITCH, this can also be a good starting point for discussing it with the FreeSWITCH team prior to submitting your pull request.-->
11+
12+
**Is your feature request related to a problem? Please describe.**
13+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
14+
15+
**Describe the solution you'd like**
16+
A clear and concise description of what you want to happen.
17+
18+
**Describe alternatives you've considered**
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.
23+
24+
**Package version or git hash**
25+
- Version of FreeSWITCH [e.g. 1.10.4]

0 commit comments

Comments
 (0)