Skip to content

Commit

Permalink
bump compiler and analysis API version to 1.7.0-dev-2437
Browse files Browse the repository at this point in the history
(cherry picked from commit fbb02bf)
  • Loading branch information
neetopia committed May 5, 2022
1 parent 22daa3f commit dc054df
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copied from kotlinc
org.gradle.jvmargs=-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx2200m -Dfile.encoding=UTF-8

kotlinBaseVersion=1.7.0-dev-1984
kotlinBaseVersion=1.7.0-dev-2437
agpBaseVersion=7.0.0
intellijVersion=203.8084.24
junitVersion=4.12
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,16 @@ class KMPImplementedIT {
).build().let {
Assert.assertEquals(TaskOutcome.SUCCESS, it.task(":workload-androidNative:build")?.outcome)
verifyKexe(
"workload-androidNative/build/bin/androidNativeX64/debugExecutable/workload-androidNative.so"
"workload-androidNative/build/bin/androidNativeX64/debugExecutable/workload-androidNative.kexe"
)
verifyKexe(
"workload-androidNative/build/bin/androidNativeX64/releaseExecutable/workload-androidNative.so"
"workload-androidNative/build/bin/androidNativeX64/releaseExecutable/workload-androidNative.kexe"
)
verifyKexe(
"workload-androidNative/build/bin/androidNativeArm64/debugExecutable/workload-androidNative.so"
"workload-androidNative/build/bin/androidNativeArm64/debugExecutable/workload-androidNative.kexe"
)
verifyKexe(
"workload-androidNative/build/bin/androidNativeArm64/releaseExecutable/workload-androidNative.so"
"workload-androidNative/build/bin/androidNativeArm64/releaseExecutable/workload-androidNative.kexe"
)
Assert.assertFalse(it.output.contains("kotlin scripting plugin:"))
Assert.assertTrue(it.output.contains("w: [ksp] platforms: [Native"))
Expand Down Expand Up @@ -246,10 +246,10 @@ class KMPImplementedIT {

verifyKexe("workload/build/bin/linuxX64/debugExecutable/workload.kexe")
verifyKexe("workload/build/bin/linuxX64/releaseExecutable/workload.kexe")
verifyKexe("workload/build/bin/androidNativeX64/debugExecutable/workload.so")
verifyKexe("workload/build/bin/androidNativeX64/releaseExecutable/workload.so")
verifyKexe("workload/build/bin/androidNativeArm64/debugExecutable/workload.so")
verifyKexe("workload/build/bin/androidNativeArm64/releaseExecutable/workload.so")
verifyKexe("workload/build/bin/androidNativeX64/debugExecutable/workload.kexe")
verifyKexe("workload/build/bin/androidNativeX64/releaseExecutable/workload.kexe")
verifyKexe("workload/build/bin/androidNativeArm64/debugExecutable/workload.kexe")
verifyKexe("workload/build/bin/androidNativeArm64/releaseExecutable/workload.kexe")

// TODO: Enable after CI's Xcode version catches up.
// Assert.assertTrue(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ class OnErrorIT {
it.startsWith("e: [ksp] kotlin.io.FileAlreadyExistsException:")
}
)

Assert.assertTrue(result.output.contains("e: java.lang.IllegalStateException: Should not be called!"))
}
project.restore("workload/build.gradle.kts")
}
Expand Down
2 changes: 1 addition & 1 deletion kotlin-analysis-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description = "Kotlin Symbol Processing implementation using Kotlin Analysis API

val intellijVersion: String by project
val junitVersion: String by project
val analysisAPIVersion = "1.7.0-dev-1984"
val analysisAPIVersion = "1.7.0-dev-2437"
val libsForTesting by configurations.creating

plugins {
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit dc054df

Please sign in to comment.