add ci_hostname variable, split up collection of data

This commit is contained in:
2023-12-02 18:38:00 +01:00
parent 68341bd8b8
commit 494a52a721
9 changed files with 243 additions and 146 deletions
+11 -2
View File
@@ -1,3 +1,12 @@
import * as gather from "./gather";
import {collect_ci} from './collect_ci';
import {collect_git} from './collect_git';
export {result_to_output} from './lib';
export {collect_git} from './collect_git';
export {collect_ci} from './collect_ci';
export function collect_all(debug = false, output = false) {
collect_ci(debug, output);
collect_git(debug, output);
}
gather.gather_information(true, true);