Skip to content

Commit 42322b6

Browse files
committed
nipa: path tweaks from netdev foundation migration
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 283fa59 commit 42322b6

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

contest/results-collector.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,8 +469,7 @@ def main() -> None:
469469
print('Generating combined')
470470
results = build_combined(fetcher, remote_db)
471471

472-
combined = os.path.join(fetcher.config.get('output', 'dir'),
473-
fetcher.config.get('output', 'combined'))
472+
combined = os.path.join(fetcher.config.get('output', 'combined'))
474473
write_json_atomic(combined, results)
475474

476475
time.sleep(int(fetcher.config.get('cfg', 'refresh')))

ui/checks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,6 @@ function do_it()
409409
* Please remember to keep these assets in sync with `scripts/ui_assets.sh`
410410
*/
411411
$(document).ready(function() {
412-
$.get("static/nipa/checks.json", run_it)
412+
$.get("checks.json", run_it)
413413
});
414414
}

ui/status.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,22 +1070,22 @@ function do_it()
10701070
* Please remember to keep these assets in sync with `scripts/ui_assets.sh`
10711071
*/
10721072
$(document).ready(function() {
1073-
$.get("static/nipa/checks.json", run_it)
1073+
$.get("checks.json", run_it)
10741074
});
10751075
$(document).ready(function() {
1076-
$.get("static/nipa/systemd.json", status_system)
1076+
$.get("status.json", status_system)
10771077
});
10781078
$(document).ready(function() {
10791079
$.get("contest/filters.json", filters_doit)
10801080
});
10811081
$(document).ready(function() {
1082-
$.get("static/nipa/branch-results.json", branch_res_doit)
1082+
$.get("contest/branch-results.json", branch_res_doit)
10831083
});
10841084
$(document).ready(function() {
10851085
$.get("query/results?branches=10&pending=y", results_loaded)
10861086
});
10871087
$(document).ready(function() {
1088-
$.get("static/nipa/branches-info.json", branches_loaded)
1088+
$.get("contest/branches-info.json", branches_loaded)
10891089
});
10901090
$(document).ready(function() {
10911091
$.get("query/flaky-tests", flakes_doit)

0 commit comments

Comments
 (0)