Skip to content

Commit f1b83c2

Browse files
committed
Remove leftover GitLab references
Clean up two .mli doc-comments and two unused static images that were missed by the prior GitLab removal commits.
1 parent b6ea248 commit f1b83c2

6 files changed

Lines changed: 4 additions & 10 deletions

File tree

lib/build.mli

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ val v :
88
([> `Built | `Checked ] Current_term.Output.t * Current.job_id option)
99
Current.t
1010
(** Build and test all the opam packages in a given build context on the given
11-
platform. [~repo] is the ID of the repository-under-test on a Git Forge
12-
(e.g. GitHub or GitLab). *)
11+
platform. [~repo] is the ID of the repository-under-test on GitHub. *)
1312

1413
val make_build_spec :
1514
base:Current_docker.Raw.Image.t ->

lib/cluster_build.mli

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ val v :
1717
([> `Built | `Checked ] Current_term.Output.t * Current.job_id option)
1818
Current.t
1919
(** Build and test all the opam packages in a given build context on the given
20-
platform. [~repo] is the ID of the repository-under-test on a Git Forge
21-
(e.g. GitHub or GitLab).
20+
platform. [~repo] is the ID of the repository-under-test on GitHub.
2221
2322
@param on_cancel The callback function to call if the job is cancelled.
2423
@param repo The ID of the repository-under-test on GitHub. *)
-5.38 KB
Binary file not shown.
-95 KB
Binary file not shown.

web-ui/view/organisation.ml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ module Make (M : Forge_prefix) = struct
2525
())
2626

2727
let logo =
28-
match M.prefix with
29-
| "github" -> Common.github_logo
30-
| _ -> raise Not_found
28+
match M.prefix with "github" -> Common.github_logo | _ -> raise Not_found
3129

3230
let git_forge_url org = Printf.sprintf "https://%s.com/%s" M.prefix org
3331

web-ui/view/ref.ml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ module Make (M : Git_forge_intf.Forge) = struct
66
type t = Branch of string | PR of { title : string; id : string }
77

88
let logo =
9-
match M.prefix with
10-
| "github" -> Common.github_logo
11-
| _ -> raise Not_found
9+
match M.prefix with "github" -> Common.github_logo | _ -> raise Not_found
1210

1311
let row ~ref ~short_hash ~started_at ~ran_for ~status ~ref_uri ~message =
1412
let ref_title =

0 commit comments

Comments
 (0)