From 4414c2aeaa968ed0ce638a8162d3254dbf2ee2f5 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Sun, 28 Apr 2024 20:37:27 -0700 Subject: [PATCH] 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. --- .github/workflows/runnable_cxx.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/runnable_cxx.yml b/.github/workflows/runnable_cxx.yml index 2e6bb43921..250ab26639 100644 --- a/.github/workflows/runnable_cxx.yml +++ b/.github/workflows/runnable_cxx.yml @@ -76,6 +76,10 @@ jobs: - { os: ubuntu-20.04, target: clang-10.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: 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 - { os: macOS-11, target: g++-11 } - { os: macOS-11, target: g++-10 }