io_tester: disambiguate sstring streaming to YAML::Emitter #388
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 | |
| # disable dpdk build as we don't use it an it is | |
| # long and breaks now and then: it still runs | |
| # upstream | |
| if: false | |
| build_with_dual_tls: | |
| name: "Test with both TLS backends" | |
| uses: ./.github/workflows/test.yaml | |
| strategy: | |
| fail-fast: false | |
| with: | |
| compiler: clang++ | |
| standard: 23 | |
| mode: debug | |
| options: --tls-mode=both | |
| build_with_openssl_tls: | |
| name: "Test with OpenSSL TLS backend only" | |
| uses: ./.github/workflows/test.yaml | |
| strategy: | |
| fail-fast: false | |
| with: | |
| compiler: clang++ | |
| standard: 23 | |
| mode: debug | |
| options: --tls-mode=openssl | |
| 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 | |
| # disable modules build as we aren't using module and it is quite | |
| # broken at the moment | |
| if: false | |
| fuzz_test: | |
| name: "Fuzz Tests" | |
| uses: ./.github/workflows/test.yaml | |
| with: | |
| compiler: clang++ | |
| standard: 23 | |
| mode: fuzz | |
| test-args: "-- -R 'Seastar.fuzz.'" |