Skip to content

Commit 609b9d5

Browse files
committed
chore: update workflows and version for v4.13.0 release
- Updated `VERSION` and `NEXT_VERSION` to `4.13.0`. - Added `-Pkotlin.native.enableKlibsCrossCompilation=false` in Gradle commands across workflows. - Removed deprecated `publish-v4-snapshot` workflow configuration. Signed-off-by: Forte <ForteScarlet@163.com>
1 parent aef6197 commit 609b9d5

File tree

5 files changed

+6
-35
lines changed

5 files changed

+6
-35
lines changed

.github/workflows/publish-v4-release.yml

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
gradle-version: ${{ env.GRADLE_VERSION }}
4242

43-
- run: gradle assemble allTests -s
43+
- run: gradle assemble allTests -s --warning-mode all -Pkotlin.native.enableKlibsCrossCompilation=false
4444

4545
- name: Upload test reports
4646
uses: actions/upload-artifact@v4
@@ -82,36 +82,6 @@ jobs:
8282
SIMBOT_RELEASES_ONLY: true
8383
SIMBOT_SNAPSHOT_ONLY: false
8484

85-
# publish-v4-snapshot:
86-
# name: Publish V4 snapshot
87-
# runs-on: ubuntu-latest
88-
# needs: test-and-publish-v4-release
89-
# steps:
90-
# - uses: actions/checkout@v4
91-
# - uses: actions/setup-java@v4
92-
# with:
93-
# distribution: ${{ env.JAVA_DISTRIBUTION }}
94-
# java-version: ${{ env.JAVA_VERSION }}
95-
# cache: 'gradle'
96-
#
97-
# # setup Gradle
98-
# - name: Gradle publish snapshot
99-
# uses: gradle/actions/setup-gradle@v3
100-
# with:
101-
# gradle-version: ${{ env.GRADLE_VERSION }}
102-
# arguments: |
103-
# publishToSonatype
104-
# closeAndReleaseStagingRepositories
105-
# -s
106-
# --warning-mode all
107-
# -x test
108-
# --build-cache
109-
# -Porg.gradle.jvmargs="-XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8"
110-
# env:
111-
# SIMBOT_IS_SNAPSHOT: true
112-
# SIMBOT_SNAPSHOT_ONLY: true
113-
# SIMBOT_RELEASES_ONLY: false
114-
11585
deploy-doc:
11686
name: Deploy V4 API Doc
11787
needs: test-and-publish-v4-release

.github/workflows/publish-v4-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: gradle/actions/setup-gradle@v3
5757
with:
5858
gradle-version: ${{ env.GRADLE_VERSION }}
59-
- run: gradle assemble allTests -s
59+
- run: gradle assemble allTests -s --warning-mode all -Pkotlin.native.enableKlibsCrossCompilation=false
6060

6161
- name: Upload test reports
6262
uses: actions/upload-artifact@v4

.github/workflows/test-v4-branch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
allTests
4646
-s
4747
--warning-mode all
48+
-Pkotlin.native.enableKlibsCrossCompilation=false
4849
4950
- name: Upload test reports
5051
uses: actions/upload-artifact@v4

buildSrc/src/main/kotlin/P.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ fun isSnapshot(): Boolean = _isSnapshot
4747
@Suppress("MemberVisibilityCanBePrivate")
4848
sealed class P(override val group: String) : ProjectDetail() {
4949
companion object {
50-
const val VERSION = "4.12.1"
51-
const val NEXT_VERSION = "4.12.1"
50+
const val VERSION = "4.13.0"
51+
const val NEXT_VERSION = "4.13.0"
5252
const val SNAPSHOT_VERSION = "$VERSION-SNAPSHOT"
5353
const val NEXT_SNAPSHOT_VERSION = "$NEXT_VERSION-SNAPSHOT"
5454

0 commit comments

Comments
 (0)