Initial async test with gh action

This commit is contained in:
Juliusz Sosinowicz
2023-03-30 19:33:40 +02:00
parent 0210dcd98d
commit 27794c4b7e
3 changed files with 38 additions and 2 deletions

25
.github/workflows/async.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Async Tests
on:
workflow_call:
jobs:
make_check:
strategy:
matrix:
config: [
# Add new configs here
'--enable-asynccrypt --enable-all --enable-dtls13',
]
name: make check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout wolfSSL
- name: Test wolfSSL async
run: |
bash -e async-check.sh keep # this step already tests the basic config
./configure ${{ matrix.config }}
make check