Initial async test with gh action
This commit is contained in:
25
.github/workflows/async.yml
vendored
Normal file
25
.github/workflows/async.yml
vendored
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user