ci: disable bad combination of compiler and stdlib

This commit is contained in:
ToruNiina 2023-12-23 23:32:39 +09:00
parent 510419fb6a
commit 01a0e93e5f

View File

@ -39,6 +39,11 @@ jobs:
compiler: ['15', '14', '13', '12', '11']
standard: ['11', '14', '17', '20']
unreleased: ['ON', 'OFF']
exclude:
- {compiler: '14', standard: '20'} # to avoid using gcc-13 libstdc++
- {compiler: '13', standard: '20'} # with older clang
- {compiler: '12', standard: '20'}
- {compiler: '11', standard: '20'}
steps:
- name: Checkout
uses: actions/checkout@v3