Skip to content

Commit 9b77c1c

Browse files
committed
Publish artifacts on ubuntu runner
1 parent 9735d9c commit 9b77c1c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ jobs:
6161
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralUsername }}
6262

6363
env:
64-
GRADLE_OPTS: -Dorg.gradle.configureondemand=true -Dorg.gradle.parallel=true -Dkotlin.incremental=false -Dorg.gradle.project.kotlin.incremental.multiplatform=false -Dorg.gradle.project.kotlin.native.disableCompilerDaemon=true -Dorg.gradle.jvmargs="-Xmx6g -Dfile.encoding=UTF-8"
64+
GRADLE_OPTS: -Dorg.gradle.configureondemand=true -Dorg.gradle.parallel=true -Dkotlin.incremental=false -Dorg.gradle.project.kotlin.incremental.multiplatform=false -Dorg.gradle.project.kotlin.native.disableCompilerDaemon=true -Dorg.gradle.jvmargs="-Xmx12g -Dfile.encoding=UTF-8"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
runs-on: macos-latest
10+
runs-on: ubuntu-latest
1111
if: ${{ github.repository == 'ajalt/clikt' }}
1212
steps:
1313
- uses: actions/checkout@v4
@@ -25,4 +25,4 @@ jobs:
2525

2626
env:
2727
# configureondemand=false to work around KT-51763
28-
GRADLE_OPTS: -Dorg.gradle.configureondemand=false -Dorg.gradle.parallel=true -Dkotlin.incremental=false -Dorg.gradle.project.kotlin.incremental.multiplatform=false -Dorg.gradle.project.kotlin.native.disableCompilerDaemon=true -Dorg.gradle.jvmargs="-Xmx6g -Dfile.encoding=UTF-8"
28+
GRADLE_OPTS: -Dorg.gradle.configureondemand=false -Dorg.gradle.parallel=true -Dkotlin.incremental=false -Dorg.gradle.project.kotlin.incremental.multiplatform=false -Dorg.gradle.project.kotlin.native.disableCompilerDaemon=true -Dorg.gradle.jvmargs="-Xmx12g -Dfile.encoding=UTF-8"

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ VERSION_NAME=5.0.1
33
# Silence the compile warning that MPP is experimental
44
kotlin.mpp.stability.nowarn=true
55

6+
# Enable experimental cross compilation
7+
kotlin.native.enableKlibsCrossCompilation=true
68

79
# gradle-maven-publish configuration
810
SONATYPE_HOST=DEFAULT

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
kotlin = "2.1.0"
3-
coroutines = "1.8.1"
4-
mordant = "3.0.0"
3+
coroutines = "1.9.0"
4+
mordant = "3.0.1"
55

66
[libraries]
77
mordant = {module = "com.github.ajalt.mordant:mordant", version.ref = "mordant"}
@@ -10,7 +10,7 @@ mordant-markdown = {module = "com.github.ajalt.mordant:mordant-markdown", versio
1010
# used in tests
1111
coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
1212
coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
13-
kotest = "io.kotest:kotest-assertions-core:5.9.0"
13+
kotest = "io.kotest:kotest-assertions-core:5.9.1"
1414
systemrules = "com.github.stefanbirkner:system-rules:1.19.0"
1515
jimfs = "com.google.jimfs:jimfs:1.3.0"
1616

@@ -20,5 +20,5 @@ kotlinx-serialization = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2"
2020

2121
[plugins]
2222
dokka = "org.jetbrains.dokka:1.9.20"
23-
publish = "com.vanniktech.maven.publish:0.28.0"
23+
publish = "com.vanniktech.maven.publish:0.30.0"
2424
kotlinBinaryCompatibilityValidator = "org.jetbrains.kotlinx.binary-compatibility-validator:0.16.3"

0 commit comments

Comments
 (0)