Skip to content

Commit

Permalink
andras-patch3 for github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gojimmypi committed Sep 28, 2023
1 parent ace59c2 commit 2e31de0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ubuntu-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,42 @@ jobs:
- name: make
run: make
- name: make check
id: make-check
run: make check
- name: Show logs on failure
if: ${{ failure() && steps.make-check.outcome == 'failure' }}
run: |
more test-suite.log
- name: configure with SN Enabled
run: ./configure --enable-sn
- name: make
run: make
- name: make check
id: make-check-sn
run: make check
- name: Show logs on failure
if: ${{ failure() && steps.make-check-sn.outcome == 'failure' }}
run: |
more test-suite.log
- name: configure with Non-Block
run: ./configure --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK"
- name: make
run: make
- name: make check
id: make-check-nonblock
run: make check
- name: Show logs on failure
if: ${{ failure() && steps.make-check-nonblock.outcome == 'failure' }}
run: |
more test-suite.log
- name: configure with Non-Block and Multi-threading
run: ./configure --enable-mt --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK"
- name: make
run: make
- name: make check
id: make-check-nonblock-mt
run: make check
- name: Show logs on failure
if: ${{ failure() && steps.make-check-nonblock-mt.outcome == 'failure' }}
run: |
more test-suite.log

0 comments on commit 2e31de0

Please sign in to comment.