Remove fir:lightTree test on kotlinx.coroutines as it caused problems in IDEA

This commit is contained in:
Simon Ogorodnik
2019-08-02 17:27:55 +03:00
parent be7b228cf6
commit 7c24ad39ea
3 changed files with 0 additions and 39 deletions
-18
View File
@@ -1,10 +1,5 @@
import org.ajoberstar.grgit.Grgit
plugins {
kotlin("jvm")
//git plugin
id("org.ajoberstar.grgit") version "3.1.1"
}
group = "org.jetbrains.kotlin.fir"
@@ -97,16 +92,3 @@ val jmhExec by tasks.creating(JavaExec::class) {
systemProperty("idea.max.intellisense.filesize", 5000 * 1024)
configurations.plusAssign(project.configurations["compile"])
}
val deleteGitFolder by tasks.creating(Delete::class) {
delete("$testDataPath/.git")
}
val cloneCoroutines by tasks.creating {
val url = "https://github.com/Kotlin/kotlinx.coroutines.git"
if (!File(testDataPath).exists()) {
Grgit.clone(mapOf("dir" to testDataPath,
"uri" to url)).close()
}
finalizedBy(tasks["deleteGitFolder"])
}