reduce aggressiveness of flush thread sometimes #667
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: GitHub CI | |
on: [push, pull_request] | |
jobs: | |
ubuntu-build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libevent-dev libseccomp-dev git libsasl2-dev libio-socket-ssl-perl | |
- name: Build | |
run: | | |
gcc --version | |
./autogen.sh | |
./configure --enable-seccomp --enable-tls --enable-sasl --enable-sasl-pwdb | |
make -j | |
- name: Test | |
run: PARALLEL=5 make test |