We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5172794 + 28a77ff commit 79e2481Copy full SHA for 79e2481
1 file changed
.github/workflows/build-and-run-examples.yml
@@ -13,6 +13,7 @@ jobs:
13
transport: [ 'tcp', 'shm', 'dma' ]
14
asan: [ 'ASAN=1', 'ASAN=0' ]
15
debug: [ '', 'DEBUG_VERBOSE=1' ]
16
+ test: [ '', '--test' ]
17
runs-on: ubuntu-latest
18
timeout-minutes: 5
19
@@ -54,13 +55,7 @@ jobs:
54
55
- name: Run POSIX client
56
run: |
57
cd examples/posix/wh_posix_client
- ./Build/wh_posix_client.elf --type ${{ matrix.transport }}
58
-
59
- - name: Run POSIX demo test
60
- if: matrix.transport == 'tcp'
61
- run: |
62
- cd examples/posix/wh_posix_client
63
- ./Build/wh_posix_client.elf --type ${{ matrix.transport }} --test
+ ./Build/wh_posix_client.elf --type ${{ matrix.transport }} ${{ matrix.test }}
64
65
# Optional: Kill the server process if it doesn't exit on its own
66
- name: Cleanup POSIX server
0 commit comments