Skip to content

Commit

Permalink
Fix hardcoded references to GitLab Pages for the Coq repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zimmi48 committed Aug 30, 2023
1 parent 6785a9d commit 76a8a14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions.ml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ let send_doc_url_job ~bot_info ?(fallback_artifacts = []) job_info doc_key
doc_key
<&>
let build_url artifact =
f "https://coq.gitlab.io/-/coq/-/jobs/%d/artifacts/%s" job_info.build_id
f "https://coq.gitlabpages.inria.fr/-/coq/-/jobs/%d/artifacts/%s" job_info.build_id
artifact
in
send_doc_url_aux ~bot_info job_info
Expand Down Expand Up @@ -305,7 +305,7 @@ let fetch_bench_results ~job_info () =
else Lwt.return_error (f "Recieved status %d from %s." status_code url)
in
let artifact_url file =
f "https://coq.gitlab.io/-/coq/-/jobs/%d/artifacts/_bench/timings/%s"
f "https://coq.gitlabpages.inria.fr/-/coq/-/jobs/%d/artifacts/_bench/timings/%s"
job_info.build_id file
in
let* summary_table = artifact_url "bench_summary" |> fetch_artifact in
Expand Down

0 comments on commit 76a8a14

Please sign in to comment.