Skip to content

Commit eff4da5

Browse files
committed
feat: support MPS 2025.2
1 parent 1a66df0 commit eff4da5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
mpsversion: [ "2020.3.6", "2021.1.4", "2021.2.6", "2021.3.5", "2022.2.4", "2022.3.3", "2023.2.2", "2023.3.2", "2024.1.1", "2024.3" ]
15+
mpsversion: [ "2020.3.6", "2021.1.4", "2021.2.6", "2021.3.5", "2022.2.4", "2022.3.3", "2023.2.2", "2023.3.2", "2024.1.1", "2024.3", "2025.1.1", "2025.2.1" ]
1616
javaversion: [ 21 ]
1717
steps:
1818
- uses: actions/checkout@v3

build-tools-lib/src/main/kotlin/org/modelix/buildtools/BuildScriptGenerator.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -948,11 +948,10 @@ class BuildScriptGenerator(
948948
)
949949
// https://raw.githubusercontent.com/JetBrains/MPS/2023.2/plugins/mps-build/solutions/mpsBuild/source_gen/jetbrains/mps/ide/build/mpsBootstrapCore.xml
950950
// https://raw.githubusercontent.com/JetBrains/MPS/2023.3/plugins/mps-build/solutions/mpsBuild/source_gen/jetbrains/mps/ide/build/mpsBootstrapCore.xml
951-
"2023.2", "2023.3", "2024.1", "2024.3" -> listOf(
951+
else -> listOf(
952952
"lib/ant/lib/ant-mps.jar",
953953
"lib/util-8.jar",
954954
)
955-
else -> error("Unsupported MPS version: $mpsVersion ($majorVersion)")
956955
}
957956
}
958957
}

0 commit comments

Comments
 (0)