From b218875d496e4b9dab27d009ae61d98cb137cd4f Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 29 Mar 2023 15:30:43 +0200 Subject: [PATCH] Rename `macOS_arm64` to `macOS_arm64_static`. Publication code in `.github/scripts` expected that `foo_mixed` target is tied to a `foo_static` target. --- .github/workflows/ci.yml | 2 +- kiwixbuild/platforms/ios.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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'