Skip to content

Commit ba295e9

Browse files
authored
Add FreeBSD 5.0 and set docker image schedule to 1 day (#27)
1 parent 80fb126 commit ba295e9

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ You can observe the results of the tests on GitHub on the corresponding commit,
1111
The current platforms are:
1212

1313
- MacOS, ARM64, OCaml 5.0.0
14-
- MacOS, ARM64, OCaml 5.1.0~beta1
14+
- MacOS, ARM64, OCaml 5.1.0
1515
- MacOS, ARM64, OCaml 5.2.0+trunk
16+
- FreeBSD, X86-64, OCaml 5.0.0
17+
- FreeBSD, X86-64, OCaml 5.1.0
1618
- Linux*, ARM64, OCaml 5.0.0
17-
- Linux*, ARM64, OCaml 5.1.0+trunk
19+
- Linux*, ARM64, OCaml 5.1.0
1820
- Linux*, ARM64, OCaml 5.2.0+trunk
19-
- Linux*, S390x, OCaml 5.1.0+trunk
21+
- Linux*, S390x, OCaml 5.1.0
2022
- Linux*, S390x, OCaml 5.2.0+trunk
2123
- Linux*, PPC64LE, OCaml 5.2.0+trunk
2224

lib/conf.ml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,16 @@ let freebsd_platforms : Platform.t list =
133133
pool = "freebsd-x86_64";
134134
distro = "freebsd";
135135
arch = `X86_64;
136-
docker_tag = "homebrew/brew";
136+
docker_tag = "freebsd";
137+
docker_tag_with_digest = None;
138+
ocaml_version = "5.0";
139+
};
140+
{
141+
builder = Builders.local;
142+
pool = "freebsd-x86_64";
143+
distro = "freebsd";
144+
arch = `X86_64;
145+
docker_tag = "freebsd";
137146
docker_tag_with_digest = None;
138147
ocaml_version = "5.1";
139148
};
@@ -172,7 +181,7 @@ let image_of_distro = function
172181
(Printf.sprintf "Unhandled distro: %s" (DD.tag_of_distro (d :> DD.t)))
173182

174183
let get_digests platforms =
175-
let schedule = Current_cache.Schedule.v ~valid_for:(Duration.of_day 30) () in
184+
let schedule = Current_cache.Schedule.v ~valid_for:(Duration.of_day 1) () in
176185
let f (p : Platform.t) =
177186
match Platform.distro_to_os p.distro with
178187
| "linux" ->

0 commit comments

Comments
 (0)