Merge pull request #14188 from igfoo/igfoo/kotlin-1.9.20

Kotlin: Support 1.9.20
This commit is contained in:
Ian Lynagh
2023-09-13 12:19:46 +01:00
committed by GitHub
11 changed files with 12 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
{
"markdownMessage": "The Kotlin version installed (`999.999.999`) is too recent for this version of CodeQL. Install a version lower than 1.9.20.",
"markdownMessage": "The Kotlin version installed (`999.999.999`) is too recent for this version of CodeQL. Install a version lower than 1.9.30.",
"severity": "error",
"source": {
"extractorName": "java",

View File

@@ -1,3 +1,3 @@
from create_database_utils import *
run_codeql_database_create(["kotlinc SomeClass.kt"], lang="java")
run_codeql_database_create(["kotlinc -J-Xmx2G SomeClass.kt"], lang="java")

View File

@@ -1,3 +1,3 @@
from create_database_utils import *
run_codeql_database_create(["kotlinc -language-version 2.0 SomeClass.kt"], lang="java")
run_codeql_database_create(["kotlinc -J-Xmx2G -language-version 2.0 SomeClass.kt"], lang="java")

View File

@@ -0,0 +1,4 @@
---
category: feature
---
* Kotlin versions up to 1.9.20 are now supported.