Support older macOS versions in CI build
Fixes #5649 <https://github.com/Genymobile/scrcpy/issues/5649> Fixes #5697<https://github.com/Genymobile/scrcpy/pull/5697> Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
parent
69858c6f43
commit
5b1229a55f
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@ -206,6 +206,13 @@ jobs:
|
|||||||
libtool
|
libtool
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
env:
|
||||||
|
# the default Xcode (and macOS SDK) version can be found at
|
||||||
|
# <https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#xcode>
|
||||||
|
#
|
||||||
|
# then the minimal supported deployment target of that macOS SDK can be found at
|
||||||
|
# <https://developer.apple.com/support/xcode/#minimum-requirements>
|
||||||
|
MACOSX_DEPLOYMENT_TARGET: 10.13
|
||||||
run: release/build_macos.sh aarch64
|
run: release/build_macos.sh aarch64
|
||||||
|
|
||||||
# upload-artifact does not preserve permissions
|
# upload-artifact does not preserve permissions
|
||||||
@ -242,6 +249,13 @@ jobs:
|
|||||||
# autoconf and libtool are already installed on macos-13
|
# autoconf and libtool are already installed on macos-13
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
env:
|
||||||
|
# the default Xcode (and macOS SDK) version can be found at
|
||||||
|
# <https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode>
|
||||||
|
#
|
||||||
|
# then the minimal supported deployment target of that macOS SDK can be found at
|
||||||
|
# <https://developer.apple.com/support/xcode/#minimum-requirements>
|
||||||
|
MACOSX_DEPLOYMENT_TARGET: 10.13
|
||||||
run: release/build_macos.sh x86_64
|
run: release/build_macos.sh x86_64
|
||||||
|
|
||||||
# upload-artifact does not preserve permissions
|
# upload-artifact does not preserve permissions
|
||||||
|
Loading…
x
Reference in New Issue
Block a user