Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github/workflow: remove the confusing comment #2227

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 36 additions & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,47 @@ jobs:
standard: [20, 23]
mode: [dev, debug, release]
include:
# in addition to the above combinations, add a combination to build with
# dpdk. but only build this combination when dpdk is enabled, so we don't
# double the size of the test matrix, and can at least test the build
# with dpdk enabled.
- compiler: clang++-18
standard: 20
mode: dev
- compiler: clang++-18
standard: 20
mode: debug
- compiler: clang++-18
standard: 20
mode: release
- compiler: clang++-18
standard: 23
mode: dev
- compiler: clang++-18
standard: 23
mode: debug
- compiler: clang++-18
standard: 23
mode: release
- compiler: gcc-13
standard: 20
mode: dev
- compiler: gcc-13
standard: 20
mode: debug
- compiler: gcc-13
standard: 20
mode: release
- compiler: gcc-13
standard: 23
mode: dev
- compiler: gcc-13
standard: 23
mode: debug
- compiler: gcc-13
standard: 23
mode: release
- compiler: clang++-18
standard: 23
mode: release
cooks: --cook dpdk
enables: --enable-dpdk
# in addition to the above combinations, add a combination to build with
# C++20 modules. but only build this combination with C++20 modules enabled,
# so we don't double the size of the test matrix, and can at least test the
# build with C++20 modules enabled.
- compiler: clang++-18
standard: 23
mode: debug
Expand Down
Loading