From 727089865f1d46e8f222b823a600ff1ed9151aba Mon Sep 17 00:00:00 2001 From: radj307 Date: Sat, 2 Mar 2024 19:11:48 -0500 Subject: [PATCH] downgrade min cmake version back to 3.22 & don't build for macos --- .github/workflows/GenerateRelease.yaml | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/GenerateRelease.yaml b/.github/workflows/GenerateRelease.yaml index bb0f62c..75ad174 100644 --- a/.github/workflows/GenerateRelease.yaml +++ b/.github/workflows/GenerateRelease.yaml @@ -49,7 +49,7 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-11 ] + os: [ ubuntu-latest, windows-latest ] fail-fast: true steps: diff --git a/CMakeLists.txt b/CMakeLists.txt index e1235d2..2736305 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # ARRCON/ -cmake_minimum_required (VERSION 3.24) +cmake_minimum_required (VERSION 3.22) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/307lib/307modules")