File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
bulk-model-sync-lib/mps-test
mps-model-adapters-plugin Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,14 @@ tasks {
39
39
}
40
40
41
41
test {
42
- onlyIf { mpsMajorVersion != " 2020.3" } // incompatible with the intellij plugin
42
+ onlyIf {
43
+ ! setOf (
44
+ " 2020.3" , // incompatible with the intellij plugin
45
+ " 2021.2" , // hangs when executed on CI
46
+ " 2021.3" , // hangs when executed on CI
47
+ " 2022.2" , // hangs when executed on CI
48
+ ).contains(mpsMajorVersion)
49
+ }
43
50
jvmArgs(" -Dintellij.platform.load.app.info.from.resources=true" )
44
51
}
45
52
}
Original file line number Diff line number Diff line change @@ -34,7 +34,14 @@ tasks {
34
34
}
35
35
36
36
test {
37
- onlyIf { mpsMajorVersion != " 2020.3" } // incompatible with the intellij plugin
37
+ onlyIf {
38
+ ! setOf (
39
+ " 2020.3" , // incompatible with the intellij plugin
40
+ " 2021.2" , // hangs when executed on CI
41
+ " 2021.3" , // hangs when executed on CI
42
+ " 2022.2" , // hangs when executed on CI
43
+ ).contains(mpsMajorVersion)
44
+ }
38
45
jvmArgs(" -Dintellij.platform.load.app.info.from.resources=true" )
39
46
40
47
val arch = System .getProperty(" os.arch" )
You can’t perform that action at this time.
0 commit comments