[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.
reviewable/pr9863/r1
Jason Benwell 1 year ago committed by GitHub
parent 35e8a0249d
commit 991b6ab48b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save