File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,23 @@ if (build_snapshot_train) {
143
143
exclude ' **/*StressTest*'
144
144
exclude ' **/*scheduling*'
145
145
exclude ' **/*Timeout*'
146
+ exclude ' **/*coroutines/debug*' // Unmute after 1.3.31 where inlining was fixed
147
+ exclude ' **/*definitely/not/kotlinx*'
148
+ }
149
+ }
150
+
151
+ println " Manifest of kotlin-compiler-embeddable.jar for coroutines"
152
+ configure(subprojects. findAll { it. name == " kotlinx-coroutines-core" }) {
153
+ configurations. matching { it. name == " kotlinCompilerClasspath" }. all {
154
+ resolvedConfiguration. getFiles(). findAll { it. name. contains(" kotlin-compiler-embeddable" ) }. each {
155
+ def manifest = zipTree(it). matching {
156
+ include ' META-INF/MANIFEST.MF'
157
+ }. getFiles(). first()
158
+
159
+ manifest. readLines(). each {
160
+ println it
161
+ }
162
+ }
146
163
}
147
164
}
148
165
}
@@ -197,7 +214,6 @@ configure(subprojects.findAll { !unpublished.contains(it.name) }) {
197
214
}
198
215
}
199
216
200
-
201
217
// Report Kotlin compiler version when building project
202
218
println (" Using Kotlin compiler version: $org . jetbrains . kotlin . config . KotlinCompilerVersion . VERSION " )
203
219
You can’t perform that action at this time.
0 commit comments