From 991b6ab48b2291cc08c93cc91a3f273fb506b8a3 Mon Sep 17 00:00:00 2001 From: Jason Benwell Date: Fri, 2 Dec 2022 14:43:45 -0500 Subject: [PATCH] [CI] Set macOS Github Action to macOS 12.00 (#9856) Doing a debug build using MACOSX_DEPLOYMENT_TARGET=12.00 produces a build that seems to work. The debug part isn't optimal but at least it builds and runs. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d23497fa..9809f334f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: # Please don't update to newer macOS version unless you can test that the new # action produces working binaries. - runs-on: macos-10.15 + runs-on: macos-12.00 steps: - name: XCode version @@ -35,9 +35,9 @@ jobs: - name: Building in progress… run: | - export MACOSX_DEPLOYMENT_TARGET=10.15; + export MACOSX_DEPLOYMENT_TARGET=12.00; export PATH="$(brew --prefix)/opt/gettext/bin:$(brew --prefix)/opt/gnu-getopt/bin:$(brew --prefix)/opt/bison/bin:$(brew --prefix)/opt/grep/libexec/gnubin:${PATH}"; - ./kodev release macos + ./kodev release macos -d - name: Uploading artifacts uses: actions/upload-artifact@v3