File tree Expand file tree Collapse file tree 4 files changed +4
-13
lines changed Expand file tree Collapse file tree 4 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 73
73
- name : Publish Windows artifacts
74
74
uses : gradle/gradle-build-action@40b6781dcdec2762ad36556682ac74e31030cfe2 # v2.5.1
75
75
with :
76
- arguments : publishMingwX64PublicationToSonatypeRepository publishMingwX86PublicationToSonatypeRepository -PenableNativeTargets
76
+ arguments : publishMingwX64PublicationToSonatypeRepository -PenableNativeTargets
77
77
env :
78
78
ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.NEXUS_PUBLISH_GPG_KEY }}
79
79
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.NEXUS_PUBLISH_GPG_KEY_PASSWORD }}
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ - Remove deprecated Kotlin/Native targets. See [ kotl.in/native-targets-tiers] ( https://kotl.in/native-targets-tiers ) .
8
+
7
9
## [ 2.3.2] - 2023-04-18
8
10
9
11
- Upgrade to Kotlin 1.8.20
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ It is available as a Kotlin Multiplatform library for the following platforms
10
10
- Browsers (JavaScript)
11
11
- Linux x64
12
12
- MingW x64
13
- - MingW x86
14
- - iOS arm32
15
13
- iOS arm64
16
14
- iOS x64
17
15
- tvOS arm64
Original file line number Diff line number Diff line change @@ -64,22 +64,14 @@ kotlin {
64
64
js(IR ) {
65
65
nodejs {}
66
66
browser {}
67
- compilations.all {
68
- kotlinOptions {
69
- moduleKind = " umd"
70
- sourceMap = true
71
- sourceMapEmbedSources = null
72
- }
73
- }
67
+ compilations.configureEach { kotlinOptions { moduleKind = " umd" } }
74
68
}
75
69
if (providers.gradleProperty(" enableNativeTargets" ).isPresent) {
76
70
if (HostManager .hostIsMac) {
77
71
iosX64()
78
- iosArm32()
79
72
iosArm64()
80
73
tvosX64()
81
74
tvosArm64()
82
- watchosX86()
83
75
watchosX64()
84
76
watchosArm32()
85
77
watchosArm64()
@@ -90,7 +82,6 @@ kotlin {
90
82
tvosSimulatorArm64()
91
83
}
92
84
if (HostManager .hostIsMingw) {
93
- mingwX86()
94
85
mingwX64()
95
86
}
96
87
if (HostManager .hostIsLinux) {
You can’t perform that action at this time.
0 commit comments