Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirk <kklobe@gmail.com>2021-10-25 05:44:12 +0300
committerKirk <kklobe@gmail.com>2021-10-25 05:44:15 +0300
commit49b2b60b24953f346c50eab60711261b7d41c767 (patch)
treec08e35817b2d1f2f6c45e19aa395770595846cde
parentf03e24acbceb7e1d7e18c01eb71f45a8f1dd24ad (diff)
Specify MACOSX_DEPLOYMENT_TARGET per archkk/macos-workflow-min-version-1
-rw-r--r--.github/workflows/macos.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 4505e9f31..fab683c0c 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -137,10 +137,12 @@ jobs:
- host: macos-latest
arch: x86_64
needs_deps: true
+ deployment_target: "10.15"
- host: [self-hosted, macOS, arm64, release-builds]
arch: arm64
needs_deps: false
+ deployment_target: "11.0"
steps:
- name: Checkout repository
@@ -211,7 +213,7 @@ jobs:
build
- name: Build
- run: arch -arch=${{ matrix.runner.arch }} ninja -C build
+ run: MACOSX_DEPLOYMENT_TARGET=${{ matrix.runner.deployment_target }} arch -arch=${{ matrix.runner.arch }} ninja -C build
- name: Upload binary
uses: actions/upload-artifact@v2