diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed5224c..fc6bf25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,7 +140,7 @@ jobs: - iOS_arm64 - iOS_x86_64 - iOS_Mac_ABI - - macOS_arm64 + - macOS_arm64_static - macOS_arm64_mixed - macOS_x86_64 runs-on: macos-latest diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index dfb5030..b3eb405 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -144,7 +144,7 @@ class iOSMacABI(ApplePlatformInfo): class macOSArm64(ApplePlatformInfo): - name = 'macOS_arm64' + name = 'macOS_arm64_static' arch = cpu = 'arm64' host = 'aarch64-apple-darwin' target = 'arm64-apple-macos11' @@ -152,7 +152,7 @@ class macOSArm64(ApplePlatformInfo): min_iphoneos_version = None -class macOSArm64Mixed(MixedMixin('macOS_arm64'), ApplePlatformInfo): +class macOSArm64Mixed(MixedMixin('macOS_arm64_static'), ApplePlatformInfo): name = 'macOS_arm64_mixed' arch = cpu = 'arm64' host = 'aarch64-apple-darwin'