forked from coturn/coturn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new actions: build and test with 3 different versions of openssl
- Loading branch information
Pavel Punsky
committed
Aug 25, 2022
1 parent
4909e50
commit bd266b3
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: OpenSSL 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 | ||
|
||
|
||
build: | ||
|
||
runs-on: ubuntu:20.04 (OpenSSL-1.1.1) | ||
|
||
steps: | ||
- name: Install dependencies | ||
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 | ||
|
||
build: | ||
|
||
runs-on: ubuntu:16.04 (OpenSSL-1.0.2) | ||
|
||
steps: | ||
- name: Install dependencies | ||
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 |