SipDialog: Randomize session timer interval a bit #82
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: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: > | |
sudo apt-get update && | |
sudo apt-get install -y | |
libboost-filesystem-dev | |
libboost-log-dev | |
libboost-system-dev | |
libboost-thread-dev | |
libcurl4-openssl-dev | |
libgoogle-perftools-dev | |
libhiredis-dev | |
libtool | |
libtool-bin | |
libunwind-dev | |
sip-tester | |
- name: build drachtio | |
run: | | |
./autogen.sh | |
mkdir -p build && cd $_ | |
../configure --enable-tcmalloc=yes | |
make | |
sudo make install | |
- name: install nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: run ci tests | |
timeout-minutes: 10 | |
run: | | |
cd test | |
npm install | |
npm run test-ci | |
cat /tmp/drachtio.log |