Skip to content

Commit 43f59a3

Browse files
authored
Merge pull request #209 from aidangarske/simple-debug-test
Add `WOLFPROV_DEBUG` to simple test
2 parents 3e0099f + 0025110 commit 43f59a3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/simple.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
openssl_ref: [ 'master', 'openssl-3.5.0' ]
2323
wolfssl_ref: [ 'master', 'v5.8.0-stable' ]
2424
force_fail: ['WOLFPROV_FORCE_FAIL=1', '']
25+
debug: ['WOLFPROV_DEBUG=1', '']
2526
steps:
2627
- name: Checkout wolfProvider
2728
uses: actions/checkout@v4
@@ -46,11 +47,11 @@ jobs:
4647
- name: Build wolfProvider
4748
if: steps.wolfprov-${{ matrix.wolfssl_ref }}-cache.hit != 'true'
4849
run: |
49-
OPENSSL_TAG=${{ matrix.openssl_ref }} WOLFSSL_TAG=${{ matrix.wolfssl_ref }} ./scripts/build-wolfprovider.sh
50+
${{ matrix.debug }} OPENSSL_TAG=${{ matrix.openssl_ref }} WOLFSSL_TAG=${{ matrix.wolfssl_ref }} ./scripts/build-wolfprovider.sh
5051
5152
- name: Run simple tests
5253
run: |
53-
${{ matrix.force_fail }} ./scripts/cmd_test/do-cmd-tests.sh
54+
${{ matrix.force_fail }} ${{ matrix.debug }} ./scripts/cmd_test/do-cmd-tests.sh
5455
5556
- name: Print test logs
5657
if: always()

0 commit comments

Comments
 (0)