File tree Expand file tree Collapse file tree 4 files changed +9
-46
lines changed
Expand file tree Collapse file tree 4 files changed +9
-46
lines changed Original file line number Diff line number Diff line change 2424 ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
2525 ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.SIGNING_KEY }}
2626 run : ./gradlew build publish
27-
28- publish-mips :
29- needs : publish
30- runs-on : ubuntu-latest
31-
32- steps :
33- - uses : actions/checkout@v3
34- - uses : actions/setup-java@v3
35- with :
36- distribution : ' zulu'
37- java-version : 19
38- - name : Build and publish mips artifacts
39- env :
40- ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
41- ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
42- ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.SIGNING_KEY }}
43- run : ./gradlew publishMips
Original file line number Diff line number Diff line change 11[versions ]
2- kotlin = " 1.8.0 "
2+ kotlin = " 1.9.22 "
33
44[plugins ]
55kotlin-multiplatform = { id = " org.jetbrains.kotlin.multiplatform" , version.ref = " kotlin" }
Original file line number Diff line number Diff line change 99 androidNativeX86()
1010 androidNativeX64()
1111
12- iosArm32()
1312 iosArm64()
1413 iosX64()
1514 iosSimulatorArm64()
@@ -24,28 +23,26 @@ kotlin {
2423 }
2524 }
2625
27- linuxArm32Hfp()
2826 linuxArm64()
29- linuxMips32()
30- linuxMipsel32()
3127 linuxX64()
3228
3329 macosX64()
3430 macosArm64()
3531
3632 mingwX64()
37- mingwX86()
3833
3934 tvosArm64()
4035 tvosX64()
4136 tvosSimulatorArm64()
4237
43- wasm32()
38+ @Suppress(" OPT_IN_USAGE" )
39+ wasmJs()
40+ @Suppress(" OPT_IN_USAGE" )
41+ wasmWasi()
4442
4543 watchosArm32()
4644 watchosArm64()
4745 watchosDeviceArm64()
48- watchosX86()
4946 watchosX64()
5047 watchosSimulatorArm64()
5148
@@ -70,10 +67,3 @@ mavenPublishing {
7067 description.set(" Kotlin Multiplatform (KMP) library that adds a nicer API than kotlin-codepoint for dealing with Unicode code points." )
7168 }
7269}
73-
74- tasks.create(" publishMips" ) {
75- dependsOn(
76- " publishLinuxMips32PublicationToMavenCentralRepository" ,
77- " publishLinuxMipsel32PublicationToMavenCentralRepository"
78- )
79- }
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ kotlin {
1111 androidNativeX86()
1212 androidNativeX64()
1313
14- iosArm32()
1514 iosArm64()
1615 iosX64()
1716 iosSimulatorArm64()
@@ -26,28 +25,26 @@ kotlin {
2625 }
2726 }
2827
29- linuxArm32Hfp()
3028 linuxArm64()
31- linuxMips32()
32- linuxMipsel32()
3329 linuxX64()
3430
3531 macosX64()
3632 macosArm64()
3733
3834 mingwX64()
39- mingwX86()
4035
4136 tvosArm64()
4237 tvosX64()
4338 tvosSimulatorArm64()
4439
45- wasm32()
40+ @Suppress(" OPT_IN_USAGE" )
41+ wasmJs()
42+ @Suppress(" OPT_IN_USAGE" )
43+ wasmWasi()
4644
4745 watchosArm32()
4846 watchosArm64()
4947 watchosDeviceArm64()
50- watchosX86()
5148 watchosX64()
5249 watchosSimulatorArm64()
5350
@@ -78,10 +75,3 @@ mavenPublishing {
7875 description.set(" Kotlin Multiplatform (KMP) library that adds basic support for Unicode code points." )
7976 }
8077}
81-
82- tasks.create(" publishMips" ) {
83- dependsOn(
84- " publishLinuxMips32PublicationToMavenCentralRepository" ,
85- " publishLinuxMipsel32PublicationToMavenCentralRepository"
86- )
87- }
You can’t perform that action at this time.
0 commit comments