Skip to content

Commit c6f641b

Browse files
committed
Conditionally disable :example-frontend-js for snapshot train
It doesn't work properly with new JS IR BE because it depends on a really old plugin version
1 parent 1eae238 commit c6f641b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

settings.gradle

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ def module(String path) {
1111
include(name)
1212
project(":$name").projectDir = file(path)
1313
}
14-
14+
def prop = properties['build_snapshot_train']
15+
ext.build_snapshot_train = prop != null && prop != ""
1516
// ---------------------------
1617

1718
include('benchmarks')
@@ -39,6 +40,8 @@ module('ui/kotlinx-coroutines-javafx')
3940
module('ui/kotlinx-coroutines-swing')
4041

4142
module('js/js-stub')
42-
module('js/example-frontend-js')
43+
if (!build_snapshot_train) {
44+
module('js/example-frontend-js')
45+
}
4346

4447
module('publication-validator')

0 commit comments

Comments
 (0)