httpd: log do_accepts gate-closed instead of swallowing it #4
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
| name: Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: # Allows manual triggering | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| regular_test: | |
| name: "Test (${{ matrix.compiler }}, C++${{ matrix.standard}}, ${{ matrix.mode }})" | |
| uses: ./.github/workflows/test.yaml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| compiler: [clang++, g++] | |
| standard: [20, 23] | |
| mode: [dev, debug, release] | |
| with: | |
| compiler: ${{ matrix.compiler }} | |
| standard: ${{ matrix.standard }} | |
| mode: ${{ matrix.mode }} | |
| enables: ${{ matrix.enables }} | |
| options: ${{ matrix.options }} | |
| build_with_dpdk: | |
| name: "Test with DPDK enabled" | |
| uses: ./.github/workflows/test.yaml | |
| strategy: | |
| fail-fast: false | |
| with: | |
| compiler: clang++ | |
| standard: 23 | |
| mode: release | |
| enables: --enable-dpdk | |
| options: --cook dpdk --dpdk-machine corei7-avx | |
| build_with_cxx_modules: | |
| name: "Test with C++20 modules enabled" | |
| uses: ./.github/workflows/test.yaml | |
| strategy: | |
| fail-fast: false | |
| with: | |
| compiler: clang++ | |
| standard: 23 | |
| mode: debug | |
| enables: --enable-cxx-modules | |
| enable-ccache: false | |
| fuzz_test: | |
| name: "Fuzz Tests" | |
| uses: ./.github/workflows/test.yaml | |
| with: | |
| compiler: clang++ | |
| standard: 23 | |
| mode: fuzz | |
| test-args: "-- -R 'Seastar.fuzz.'" |