-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set
:poko-tests
JVM toolchain version via CI (#311)
* Remove JDK-specific :poko-tests variants * Update :poko-tests:performance * Update CI action to test on older JDKs separately * Delete unused old jvmToolchain helper from :poko-tests * Only run build-sample once on CI
- Loading branch information
1 parent
e4dd78f
commit dc36c09
Showing
6 changed files
with
52 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
import java.io.File | ||
|
||
fun jvmOutput(relativePath: String, version: Int = -1): File { | ||
val number = if (version == -1) "" else "$version" | ||
return File("../build/classes/kotlin/jvm$number/main", relativePath) | ||
} | ||
fun jvmOutput(relativePath: String) = File("../build/classes/kotlin/jvm/main", relativePath) | ||
fun jsOutput() = File("../build/compileSync/js/main/productionExecutable/kotlin/Poko-poko-tests.js") |