Skip to content

Commit

Permalink
Another fix for publication
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Feb 8, 2024
1 parent 36eb3c4 commit 904bd9e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {

allprojects {
group = "io.exoquery"
version = "2.0.1"
version = "2.0.2"
}

subprojects {
Expand Down
3 changes: 2 additions & 1 deletion pprint-kotlin-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ kotlin {
androidNativeArm32()
androidNativeArm64()

// Linux needs to know about these
// Need to know about this since we publish the -tooling metadata from
// the linux containers. Although it doesn't build these it needs to know about them.
macosX64()
macosArm64()
iosX64()
Expand Down
16 changes: 16 additions & 0 deletions pprint-kotlin-kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,23 @@ kotlin {
androidNativeX86()
androidNativeArm32()
androidNativeArm64()

// Need to know about this since we publish the -tooling metadata from
// the linux containers. Although it doesn't build these it needs to know about them.
macosX64()
macosArm64()
iosX64()
iosArm64()
iosSimulatorArm64()
tvosX64()
tvosArm64()
watchosX64()
watchosArm32()
watchosArm64()

mingwX64()
}

if (isMac && isCI) {
macosX64()
macosArm64()
Expand Down

0 comments on commit 904bd9e

Please sign in to comment.