Remove some failing compilers (macos, ubuntu) from workflow. (#1886)

This commit is contained in:
Andreas Süßenbach 2024-06-04 11:51:53 +02:00 committed by GitHub
parent 56fb4452c6
commit 83b289da71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 6 deletions

View File

@ -12,14 +12,12 @@ jobs:
strategy:
matrix:
os: [macos-12, macos-13]
# g++-12 fails on some very innocent code... excluding it for now
compiler: [clang++, g++-11, g++-13]
# g++-12 and g++13 fail on some very innocent code... excluding them for now
compiler: [clang++, g++-11]
exclude:
# g++-11 and g++-13 fails on macos-13 with some linker assertion... excluing it for now
# g++-11 fails on macos-13 with some linker assertion... excluding it for now
- os: macos-13
compiler: g++-11
- os: macos-13
compiler: g++-13
steps:
- uses: actions/checkout@v4

View File

@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
# g++-12 fails on some very innocent code... excluding it for now
compiler: [clang++-13, clang++-14, clang++-15, g++-9, g++-10, g++-11, g++-13]
compiler: [clang++-13, clang++-14, clang++-15, g++-10, g++-11]
steps:
- uses: actions/checkout@v4