Skip to content

Commit 4a3d9b3

Browse files
authored
Remove macOS workflows (#36)
1 parent 6caf82d commit 4a3d9b3

File tree

2 files changed

+4
-29
lines changed

2 files changed

+4
-29
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ You can observe the results of the tests on GitHub on the corresponding commit,
1010

1111
The current platforms are:
1212

13-
- MacOS, ARM64, OCaml 5.1.0
14-
- MacOS, ARM64, OCaml 5.2.0+trunk
1513
- FreeBSD, X86-64, OCaml 5.1.0
1614
- FreeBSD, X86-64, OCaml 5.2.0
1715
- Linux*, ARM64, OCaml 5.1.0
18-
- Linux*, ARM64, OCaml 5.2.0+trunk
16+
- Linux*, ARM64, OCaml 5.2.0
1917
- Linux*, S390x, OCaml 5.1.0
20-
- Linux*, S390x, OCaml 5.2.0+trunk
21-
- Linux*, PPC64LE, OCaml 5.2.0+trunk
18+
- Linux*, S390x, OCaml 5.2.0
19+
- Linux*, PPC64LE, OCaml 5.2.0
2220

2321
*Specifically Debian 11.
2422

lib/conf.ml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -87,29 +87,6 @@ module Platform = struct
8787
let pp = Fmt.of_to_string label
8888
end
8989

90-
let macos_platforms : Platform.t list =
91-
(* {
92-
label = "macos-amd64";
93-
builder = Builders.local;
94-
pool = "macos-x86_64";
95-
distro = "macos-homebrew";
96-
arch = `X86_64;
97-
docker_tag = "homebrew/brew";
98-
}; *)
99-
List.map
100-
(fun ocaml_version ->
101-
Platform.
102-
{
103-
builder = Builders.local;
104-
pool = "macos-arm64";
105-
distro = "macos-homebrew";
106-
arch = `Aarch64;
107-
docker_tag = "homebrew/brew";
108-
docker_tag_with_digest = None;
109-
ocaml_version;
110-
})
111-
[ "5.1"; "5.2" ]
112-
11390
let freebsd_platforms : Platform.t list =
11491
List.map
11592
(fun ocaml_version ->
@@ -202,4 +179,4 @@ let platforms () =
202179
|> List.map (fun (ocaml_version, distro, arch) ->
203180
v ~arch distro ocaml_version)
204181
in
205-
platforms @ macos_platforms @ freebsd_platforms |> get_digests
182+
platforms @ freebsd_platforms |> get_digests

0 commit comments

Comments
 (0)