Rename `macOS_arm64` to `macOS_arm64_static`.
Publication code in `.github/scripts` expected that `foo_mixed` target is tied to a `foo_static` target.
This commit is contained in:
parent
b4e0d60363
commit
b218875d49
|
@ -140,7 +140,7 @@ jobs:
|
||||||
- iOS_arm64
|
- iOS_arm64
|
||||||
- iOS_x86_64
|
- iOS_x86_64
|
||||||
- iOS_Mac_ABI
|
- iOS_Mac_ABI
|
||||||
- macOS_arm64
|
- macOS_arm64_static
|
||||||
- macOS_arm64_mixed
|
- macOS_arm64_mixed
|
||||||
- macOS_x86_64
|
- macOS_x86_64
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
|
@ -144,7 +144,7 @@ class iOSMacABI(ApplePlatformInfo):
|
||||||
|
|
||||||
|
|
||||||
class macOSArm64(ApplePlatformInfo):
|
class macOSArm64(ApplePlatformInfo):
|
||||||
name = 'macOS_arm64'
|
name = 'macOS_arm64_static'
|
||||||
arch = cpu = 'arm64'
|
arch = cpu = 'arm64'
|
||||||
host = 'aarch64-apple-darwin'
|
host = 'aarch64-apple-darwin'
|
||||||
target = 'arm64-apple-macos11'
|
target = 'arm64-apple-macos11'
|
||||||
|
@ -152,7 +152,7 @@ class macOSArm64(ApplePlatformInfo):
|
||||||
min_iphoneos_version = None
|
min_iphoneos_version = None
|
||||||
|
|
||||||
|
|
||||||
class macOSArm64Mixed(MixedMixin('macOS_arm64'), ApplePlatformInfo):
|
class macOSArm64Mixed(MixedMixin('macOS_arm64_static'), ApplePlatformInfo):
|
||||||
name = 'macOS_arm64_mixed'
|
name = 'macOS_arm64_mixed'
|
||||||
arch = cpu = 'arm64'
|
arch = cpu = 'arm64'
|
||||||
host = 'aarch64-apple-darwin'
|
host = 'aarch64-apple-darwin'
|
||||||
|
|
Loading…
Reference in New Issue