Skip to content

Commit d4716b7

Browse files
committed
Rewrite collect results script in Java
1 parent 198a35d commit d4716b7

7 files changed

Lines changed: 509 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)