33 lines
677 B
YAML
33 lines
677 B
YAML
name: Async Tests
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
make_check:
|
|
strategy:
|
|
matrix:
|
|
config: [
|
|
# Add new configs here
|
|
'--enable-asynccrypt --enable-all --enable-dtls13',
|
|
'--enable-asynccrypt-sw',
|
|
]
|
|
name: make check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
name: Checkout wolfSSL
|
|
|
|
- name: Test wolfSSL async
|
|
run: |
|
|
./async-check.sh setup
|
|
./configure ${{ matrix.config }}
|
|
make check
|
|
|
|
- name: Print errors
|
|
if: ${{ failure() }}
|
|
run: |
|
|
if [ -f test-suite.log ] ; then
|
|
cat test-suite.log
|
|
fi
|