Skip to content

fix: disable rwf_no_wait #249

fix: disable rwf_no_wait

fix: disable rwf_no_wait #249

Workflow file for this run

# 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