From 8ae8feaa4a7ae4c2a029be3c624aeeb205367970 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Tue, 7 Nov 2023 14:18:35 +0000 Subject: [PATCH] removed iOSMacABI target as useless --- .github/scripts/build_definition.py | 1 - .github/workflows/ci.yml | 1 - kiwixbuild/platforms/ios.py | 9 --------- 3 files changed, 11 deletions(-) diff --git a/.github/scripts/build_definition.py b/.github/scripts/build_definition.py index 39716e3a..73722331 100644 --- a/.github/scripts/build_definition.py +++ b/.github/scripts/build_definition.py @@ -27,7 +27,6 @@ | macos | native_mixed | BP | BP | | | | macos-x86_64 | | macos | iOS_arm64 | dB | B | | | | | | macos | iOS_x86_64 | dB | B | | | | | - | macos | iOS_Mac_ABI | B | B | | | | | | macos | macOS_arm64_static | | | | | | | | macos | macOS_arm64_mixed | BP | BP | | | | macos-arm64 | | macos | macOS_x86_64 | B | B | | | | | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b97e69a..c18a9adf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,7 +148,6 @@ jobs: - native_mixed - iOS_arm64 - iOS_x86_64 - - iOS_Mac_ABI - macOS_arm64_static - macOS_arm64_mixed - macOS_x86_64 diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index 3397a3ac..e5e7e07c 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -140,15 +140,6 @@ class iOSx64(ApplePlatformInfo): min_iphoneos_version = '15.0' -class iOSMacABI(ApplePlatformInfo): - name = 'iOS_Mac_ABI' - arch = cpu = 'x86_64' - host = 'x86_64-apple-darwin' - target = 'x86_64-apple-ios14.0-macabi' - sdk_name = 'macosx' - min_iphoneos_version = '15.0' - - class macOSArm64(ApplePlatformInfo): name = 'macOS_arm64_static' arch = cpu = 'arm64'