fix: disable rwf_no_wait #249
This file contains hidden or 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
| # SPDX-License-Identifier: BSD-3-Clause | |
| # All rights reserved. | |
| # | |
| name: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - 'v*' | |
| push: | |
| branches: | |
| - 'v*' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 120 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: | | |
| sudo ./scripts/pkgdep.sh -d -r -u | |
| git submodule update --init | |
| export MAKEFLAGS="-j$(nproc)" | |
| - name: Lint | |
| run: ./scripts/check_format.sh | |
| - name: Build | |
| run: | | |
| ./configure --enable-werror --enable-debug --enable-coverage --enable-asan --with-crypto | |
| make -j | |
| - name: Running Tests | |
| run: ./test/unit/unittest.sh |