Exclude MSVC-* on Ubuntu (#16423)

Removes the Ubuntu/MSVC builds from the GitHub Actions as MSVC is obviously not supported on Ubuntu but it still runs the tests. This should reduce the CI resources and failure modes.
This commit is contained in:
Adam Wilson 2024-04-28 20:37:27 -07:00 committed by GitHub
parent e60bfd11bd
commit 4414c2aeaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -76,6 +76,10 @@ jobs:
- { os: ubuntu-20.04, target: clang-10.0.0 } - { os: ubuntu-20.04, target: clang-10.0.0 }
- { os: ubuntu-20.04, target: clang-9.0.0 } - { os: ubuntu-20.04, target: clang-9.0.0 }
- { os: ubuntu-20.04, target: clang-8.0.0 } - { os: ubuntu-20.04, target: clang-8.0.0 }
- { os: ubuntu-20.04, target: msvc-2019 }
- { os: ubuntu-20.04, target: msvc-2017 }
- { os: ubuntu-20.04, target: msvc-2015 }
- { os: ubuntu-20.04, target: msvc-2013 }
# OSX only supports clang # OSX only supports clang
- { os: macOS-11, target: g++-11 } - { os: macOS-11, target: g++-11 }
- { os: macOS-11, target: g++-10 } - { os: macOS-11, target: g++-10 }