Skip to content

Commit 92ad422

Browse files
committed
release: v0.2.3
1 parent 63f77d6 commit 92ad422

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.github/workflows/publish-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,8 @@ jobs:
5656
--info
5757
--warning-mode all
5858
-x test
59-
-Pkotlin.daemon.jvmargs="-Xmx8G -XX:MaxPermSize=2g -Dfile.encoding=UTF-8"
60-
-Porg.gradle.jvmargs="-Xmx8G -XX:MaxPermSize=2g -Dfile.encoding=UTF-8"
61-
-Porg.gradle.workers.max=16
62-
-Porg.gradle.parallel=true
59+
--build-cache
60+
-Porg.gradle.jvmargs="-XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8"-Porg.gradle.workers.max=16
6361
-Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }}
6462
-Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}
6563

runtime/suspend-transform-annotation/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ kotlin {
3333
}
3434
}
3535

36-
configAllNativeTargets()
37-
3836
sourceSets {
3937
val commonMain by getting
4038
val commonTest by getting

runtime/suspend-transform-runtime/build.gradle.kts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,8 @@ kotlin {
8686
}
8787
}
8888

89-
val nativeMain by creating {
90-
dependsOn(commonMain)
91-
}
92-
93-
val nativeTest by creating {
94-
dependsOn(commonTest)
95-
}
89+
val nativeMain by creating { dependsOn(commonMain) }
90+
val nativeTest by creating { dependsOn(commonTest) }
9691

9792
configure(mainPresets) { dependsOn(nativeMain) }
9893
configure(testPresets) { dependsOn(nativeTest) }
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package love.forte.plugin.suspendtrans.runtime
2+
3+
/*
4+
common中必须存在内容来使得KMP生成平台的 `.klib` 等文件
5+
*/

0 commit comments

Comments
 (0)