|
@@ -5,7 +5,7 @@ on:
|
|
|
- master
|
|
|
pull_request:
|
|
|
jobs:
|
|
|
- build-media:
|
|
|
+ build-nice:
|
|
|
runs-on: ubuntu-latest
|
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
@@ -19,18 +19,4 @@ jobs:
|
|
|
run: (cd build; make -j2)
|
|
|
- name: test
|
|
|
run: ./build/tests
|
|
|
- build-no-media:
|
|
|
- runs-on: ubuntu-latest
|
|
|
- steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
- - name: install packages
|
|
|
- run: sudo apt update && sudo apt install libgnutls28-dev libnice-dev
|
|
|
- - name: submodules
|
|
|
- run: git submodule update --init --recursive --depth 1
|
|
|
- - name: cmake
|
|
|
- run: cmake -B build -DUSE_GNUTLS=1 -DUSE_NICE=1 -DNO_MEDIA=1 -DWARNINGS_AS_ERRORS=1
|
|
|
- - name: make
|
|
|
- run: (cd build; make -j2)
|
|
|
- - name: test
|
|
|
- run: ./build/tests
|
|
|
|