Merge branch 'rr/yole/verify-ignore-perf'
This commit is contained in:
@@ -3,6 +3,3 @@
|
|||||||
[INFO] Classes directory is /target/classes
|
[INFO] Classes directory is /target/classes
|
||||||
[INFO] Using kotlin annotations from /local-repo/org/jetbrains/kotlin/kotlin-jdk-annotations/0.1-SNAPSHOT/kotlin-jdk-annotations-0.1-SNAPSHOT.jar
|
[INFO] Using kotlin annotations from /local-repo/org/jetbrains/kotlin/kotlin-jdk-annotations/0.1-SNAPSHOT/kotlin-jdk-annotations-0.1-SNAPSHOT.jar
|
||||||
[INFO] Module name is test-project
|
[INFO] Module name is test-project
|
||||||
[INFO] PERF: INIT: Compiler initialized in LLL ms
|
|
||||||
[INFO] PERF: ANALYZE: 1 files (2 lines) in LLL ms
|
|
||||||
[INFO] PERF: GENERATE: 1 files (2 lines) in LLL ms
|
|
||||||
@@ -19,7 +19,11 @@ State state = new File(basedir, "build.log").readLines().collect { it.replaceAll
|
|||||||
def m = pattern.matcher(line)
|
def m = pattern.matcher(line)
|
||||||
if (m.find()) {
|
if (m.find()) {
|
||||||
acc.currentPlugin = m.group(1)
|
acc.currentPlugin = m.group(1)
|
||||||
} else if (line.startsWith("[INFO] Downloaded:") || line.startsWith("[INFO] Downloading:") || line.startsWith("Downloaded:") || line.startsWith("Downloading:")) {
|
} else if (line.startsWith("[INFO] Downloaded:") ||
|
||||||
|
line.startsWith("[INFO] Downloading:") ||
|
||||||
|
line.startsWith("Downloaded:") ||
|
||||||
|
line.startsWith("Downloading:") ||
|
||||||
|
line.startsWith("[INFO] PERF:")) {
|
||||||
// ignore line
|
// ignore line
|
||||||
} else if (acc.currentPlugin == "kotlin-maven-plugin") {
|
} else if (acc.currentPlugin == "kotlin-maven-plugin") {
|
||||||
def filtered = removePaths(line, basedir).
|
def filtered = removePaths(line, basedir).
|
||||||
|
|||||||
Reference in New Issue
Block a user