fix: fix issues seen in "multi" mode when a large number of sockets are created concurrently #221
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C Unit Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [trunk] | |
pull_request: | |
branches: [trunk] | |
permissions: # added using https://github.com/step-security/secure-repo | |
contents: read | |
jobs: | |
unit-tests: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: sshnpd Unit CTest | |
working-directory: packages/c | |
run: | | |
cmake -S . -B build -DSSHNPD_BUILD_TESTS=ON | |
cmake --build build | |
ctest --test-dir build/sshnpd/tests --output-on-failure --timeout 2 |