Browse Source

Removed existing workflow with nice and no media

Paul-Louis Ageneau 3 years ago
parent
commit
985fd8f91d
1 changed files with 1 additions and 15 deletions
  1. 1 15
      .github/workflows/build-nice.yml

+ 1 - 15
.github/workflows/build-nice.yml

@@ -5,7 +5,7 @@ on:
     - master
     - master
   pull_request:
   pull_request:
 jobs:
 jobs:
-  build-media:
+  build-nice:
     runs-on: ubuntu-latest
     runs-on: ubuntu-latest
     steps:
     steps:
     - uses: actions/checkout@v2
     - uses: actions/checkout@v2
@@ -19,18 +19,4 @@ jobs:
       run: (cd build; make -j2)
       run: (cd build; make -j2)
     - name: test
     - name: test
       run: ./build/tests
       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