[Core] switch_channel_clear_state_handler(), switch_channel_get_state… #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
unit-tests-pre-config: | |
runs-on: ubuntu-latest | |
env: | |
TOTAL_GROUPS: 2 | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- id: set-matrix | |
shell: bash | |
run: | | |
MATRIX=$(jq -c -n --argjson groups "${{ env.TOTAL_GROUPS }}" \ | |
'{ | |
include: [range(1; $groups + 1) | {group: ., total: $groups}] | |
}') | |
echo "matrix=$MATRIX" | tee -a $GITHUB_OUTPUT | |
unit-tests: | |
needs: unit-tests-pre-config | |
strategy: | |
matrix: ${{ fromJson(needs.unit-tests-pre-config.outputs.matrix) }} | |
name: "unit-tests (group ${{ matrix.group }})" | |
uses: ./.github/workflows/unit-test.yml | |
with: | |
total-groups: ${{ matrix.total }} | |
current-group: ${{ matrix.group }} | |
secrets: inherit | |
scan-build: | |
runs-on: ubuntu-latest | |
container: | |
image: signalwire/freeswitch-public-base:bookworm | |
credentials: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
options: --privileged | |
env: | |
REPOTOKEN: ${{ secrets.REPOTOKEN }} | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: Install dependencies | |
shell: bash | |
run: | | |
echo "machine freeswitch.signalwire.com password $REPOTOKEN" > /etc/apt/auth.conf && \ | |
apt-get update && \ | |
apt-get -y remove \ | |
libsofia-sip-ua0 \ | |
libspandsp-dev && \ | |
apt-get -y install \ | |
autoconf \ | |
libsofia-sip-ua-dev \ | |
libspandsp3-dev && \ | |
rm -rf /etc/apt/auth.conf | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
path: /__w/freeswitch/freeswitch | |
- name: Bootstrap | |
shell: bash | |
working-directory: /__w/freeswitch/freeswitch | |
run: | | |
./bootstrap.sh -j || exit 1 | |
- name: Scan-build FreeSwitch | |
shell: bash | |
working-directory: /__w/freeswitch/freeswitch | |
run: | | |
cp build/modules.conf.most modules.conf && \ | |
echo 'codecs/mod_openh264' >> modules.conf && \ | |
sed -i \ | |
-e '/mod_mariadb/s/^#//g' \ | |
-e '/mod_v8/s/^#//g' \ | |
-e '/mod_ilbc/s/^/#/g' \ | |
-e '/mod_isac/s/^/#/g' \ | |
-e '/mod_mp4/s/^/#/g' \ | |
-e '/mod_mongo/s/^/#/g' \ | |
-e '/mod_pocketsphinx/s/^/#/g' \ | |
-e '/mod_sangoma_codec/s/^/#/g' \ | |
-e '/mod_siren/s/^/#/g' \ | |
-e '/mod_avmd/s/^/#/g' \ | |
-e '/mod_basic/s/^/#/g' \ | |
-e '/mod_cdr_mongodb/s/^/#/g' \ | |
-e '/mod_cv/s/^/#/g' \ | |
-e '/mod_erlang_event/s/^/#/g' \ | |
-e '/mod_perl/s/^/#/g' \ | |
-e '/mod_rtmp/s/^/#/g' \ | |
-e '/mod_unimrcp/s/^/#/g' \ | |
-e '/mod_xml_rpc/s/^/#/g' \ | |
modules.conf && \ | |
./configure && \ | |
./scan_build.sh |