gh workflow: fix path to macOS arm64 cross file

This commit is contained in:
jgmdev 2023-01-25 17:28:34 -04:00 committed by George Sokianos
parent ccceb2a65c
commit 8fbc843260
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ jobs:
LiteXL-${{ env.INSTALL_REF }}-addons-x86_64.AppImage LiteXL-${{ env.INSTALL_REF }}-addons-x86_64.AppImage
build_macos: build_macos:
name: macOS (x86_64) name: macOS
needs: release needs: release
runs-on: macos-11 runs-on: macos-11
strategy: strategy:

View File

@ -111,7 +111,7 @@ main() {
if [[ $platform == "macos" ]]; then if [[ $platform == "macos" ]]; then
macos_version_min=10.11 macos_version_min=10.11
if [[ $CROSS_ARCH == "arm64" ]]; then if [[ $CROSS_ARCH == "arm64" ]]; then
cross_file="--cross-file resources/macos/macos_arm64.conf" cross_file="--cross-file resources/cross/macos_arm64.txt"
macos_version_min=11.0 macos_version_min=11.0
fi fi
export MACOSX_DEPLOYMENT_TARGET=$macos_version_min export MACOSX_DEPLOYMENT_TARGET=$macos_version_min