From 670bbb04177b5ff2cefbac21b6b503311120c4a5 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 a706daa..c59dcc0 100644 --- a/.github/scripts/build_definition.py +++ b/.github/scripts/build_definition.py @@ -27,7 +27,6 @@ BUILD_DEF = """ | 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 c32e223..77a0d44 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 31273a9..065a62c 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -137,15 +137,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'