mirror of
https://github.com/coturn/coturn.git
synced 2025-10-23 20:11:17 +02:00
Move to matrix structure
This commit is contained in:
parent
9d412d86b6
commit
d06aef24b7
31
.github/workflows/openssl-3.yml
vendored
31
.github/workflows/openssl-3.yml
vendored
@ -1,31 +0,0 @@
|
|||||||
name: OpenSSL-3.0 Compatibility
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ $default-branch ]
|
|
||||||
pull_request:
|
|
||||||
types: [ opened, reopened, synchronize ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- name: Install dependencies (OpenSSL-3.0.2)
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y \
|
|
||||||
libevent-dev \
|
|
||||||
libssl-dev \
|
|
||||||
libpq-dev libmariadb-dev libsqlite3-dev \
|
|
||||||
libhiredis-dev \
|
|
||||||
libmongoc-dev \
|
|
||||||
libmicrohttpd-dev
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: configure
|
|
||||||
run: ./configure
|
|
||||||
- name: make
|
|
||||||
run: make
|
|
||||||
- name: make check
|
|
||||||
run: make check
|
|
||||||
- name: apps tests
|
|
||||||
run: cd examples && ./run_tests.sh
|
|
10
.github/workflows/tests.yml
vendored
10
.github/workflows/tests.yml
vendored
@ -7,10 +7,12 @@ on:
|
|||||||
types: [ opened, reopened, synchronize ]
|
types: [ opened, reopened, synchronize ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
builds:
|
||||||
|
strategy:
|
||||||
runs-on: ubuntu-20.04
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04, ubuntu-22.04]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user