From a9b2bdc11c8c849e5c4abb7b4c33794e3662589e Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Sat, 23 Nov 2024 10:58:43 -0500 Subject: [PATCH] For now, temporarily disable Windows build from build_cmake Signed-off-by: Geoff Hutchison --- .github/workflows/build_cmake.yml | 9 --------- .github/workflows/build_windows.yml | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 02e5292f43..1650c28733 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -51,15 +51,6 @@ jobs: cmake_flags: "-G Ninja -DBUILD_MOLEQUEUE=OFF", cpack_flags: "-G DragNDrop", } - - { - name: "Windows Latest MSVC", artifact: "Win64.exe", - os: windows-latest, - cc: "cl", cxx: "cl", - build_type: "Release", - cmake_flags: "-DBUILD_MOLEQUEUE=OFF", - build_flags: "-j 2", - cpack_flags: "-G NSIS", - } - { name: "Ubuntu Address Sanitizer", artifact: "", os: ubuntu-20.04, diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 8fd93d7593..c193f53406 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -1,4 +1,4 @@ -name: CMake Build Matrix +name: CMake Windows Build # Many thanks to Cristian Adam for examples # e.g. https://github.com/cristianadam/HelloWorld/blob/master/.github/workflows/build_cmake.yml # https://cristianadam.eu/20191222/using-github-actions-with-c-plus-plus-and-cmake/