Skip to content

Commit b89c614

Browse files
committed
added collapsing blocks and support for unstable status based on successful installation with errors
1 parent 5f960b5 commit b89c614

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/net/adamcin/jenkins/granite/GraniteAnnotatorFactory.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ public class GraniteAnnotatorFactory extends ConsoleAnnotatorFactory<Class<Run>>
1414
public ConsoleAnnotator newInstance(Class<Run> context) {
1515
SectionDefinition uninstallSection = new SectionDefinition(
1616
"[Granite] Uninstalling package",
17-
"M Uninstalling package from snapshot .*",
18-
"M Package imported.");
17+
"Uninstalling content",
18+
"Package uninstalled");
1919
SectionDefinition installSection = new SectionDefinition(
2020
"[Granite] Installing package",
21-
"M Creating snapshot for package .*",
22-
"M Package imported.");
21+
"Installing content",
22+
"Package uploaded");
2323
return new CollapsingSectionAnnotator(uninstallSection, installSection);
2424
}
2525
}

0 commit comments

Comments
 (0)