Skip to content

pdb server: allow carrier id 0 #4

pdb server: allow carrier id 0

pdb server: allow carrier id 0 #4

Workflow file for this run

---
name: build
'on':
push:
branches:
- '5.6'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/kamailio/pkg-kamailio-docker:${{ github.ref_name }}-${{ matrix.distribution }}
volumes:
- ${{ github.workspace }}:/code
env:
DIST: ${{ matrix.distribution }}
CC: ${{ matrix.compilier }}
strategy:
matrix:
include:
- distribution: bullseye
compilier: gcc
- distribution: bullseye
compilier: clang
- distribution: sid
compilier: gcc
- distribution: sid
compilier: clang
steps:
- uses: actions/checkout@v2
- uses: ammaraskar/[email protected]
- name: build
run: |
cd /code
./test/travis/build_travis.sh
shell: bash