Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 0 additions & 140 deletions .gitlab/TagSyntheticFailures.java

This file was deleted.

58 changes: 0 additions & 58 deletions .gitlab/add_final_status.xsl

This file was deleted.

14 changes: 14 additions & 0 deletions .gitlab/collect-result/CollectResults.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import java.nio.file.Path;
import java.util.List;

class CollectResults {
public static void main(String[] args) throws Exception {
var collector =
new ResultCollector(
Path.of("results"),
Path.of("workspace"),
List.of(Path.of("workspace"), Path.of("buildSrc")));

collector.collect();
}
}
Loading