Skip to content

Commit 02117e3

Browse files
bric3devflow.devflow-routing-intake
andauthored
Rewrite collect results script in Java (#11422)
Rewrite collect results script in Java Reuse XML factories in collect results Co-authored-by: devflow.devflow-routing-intake <devflow.devflow-routing-intake@kubernetes.us1.ddbuild.io>
1 parent 0fd3b59 commit 02117e3

7 files changed

Lines changed: 525 additions & 292 deletions

File tree

.gitlab/TagSyntheticFailures.java

Lines changed: 0 additions & 140 deletions
This file was deleted.

.gitlab/add_final_status.xsl

Lines changed: 0 additions & 58 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import java.nio.file.Path;
2+
import java.util.List;
3+
4+
class CollectResults {
5+
public static void main(String[] args) throws Exception {
6+
var collector =
7+
new ResultCollector(
8+
Path.of("results"),
9+
Path.of("workspace"),
10+
List.of(Path.of("workspace"), Path.of("buildSrc")));
11+
12+
collector.collect();
13+
}
14+
}

0 commit comments

Comments
 (0)