1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
|
(**************************************************************************)
(* *)
(* Copyright 2021 David Allsopp Ltd. *)
(* *)
(* All rights reserved. This file is distributed under the terms of the *)
(* GNU Lesser General Public License version 2.1, with the special *)
(* exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(* Generator script for the GitHub Actions workflows. Primary aim is to
eliminate duplicated YAML steps (e.g. the build step for a cache miss) *)
open Lib
let latest_ocaml4 = "4.14.2"
let latest_ocaml5 = "5.4.0" (* Add this number to ocamls below when the next version comes out *)
let ocamls = [
(* Fully supported versions *)
"4.08.1"; "4.09.1"; "4.10.2"; "4.11.2"; "4.12.1"; "4.13.1";
"5.0.0"; "5.1.1"; "5.2.1"; "5.3.0";
(* The last elements of the list after 4.14 will be used as default versions *)
latest_ocaml4; latest_ocaml5;
]
let start_latests_ocaml = (4, 14)
(* Entry point for the workflow. Workflows are specified as continuations where
each job is passed as a continuation to the [workflow], terminated with
{!end_workflow}. *)
let workflow ~oc ~env name f =
fprintf oc
{|name: %s
on:
pull_request:
paths:
- 'src/**'
- '!src/tools/**'
- 'src_ext/**'
- 'dune'
- 'dune-project'
- '*.opam'
- 'Makefile*'
- 'configure*'
- '.github/scripts/**'
- '.github/workflows/main.yml'
- 'tests/**'
- '!tests/bench/**'
- 'shell/'
push:
branches:
- 'master'
- '2.**'
|} name;
if env <> [] then begin
output_char oc '\n';
emit_env ~oc ~indent:0 env
end;
output_string oc
{|
defaults:
run:
shell: bash
jobs:
|};
f ~oc ~workflow:name
let end_workflow ~oc:_ ~workflow:_ = ()
let ocamls =
List.map (fun v -> Scanf.sscanf v "%u.%u.%u" (fun major minor _ -> ((major, minor), v))) ocamls
let platform_ocaml_matrix ?(dir=List.drop_while) ~fail_fast start_version =
(fail_fast,
[("ocamlv", List.map snd (dir (fun ocaml -> fst ocaml <> start_version) ocamls))],
[])
let git_lf_checkouts ?(title="Configure Git") ?cond ?shell () =
run title ?cond ?shell
["git config --system core.autocrlf false";
"git config --system core.eol lf"]
type cache = {
name: string;
key: string -> string;
id: string;
force_gzip: bool;
paths: string list;
build: string list;
build_shell: string option;
}
type _ cache_name =
| Archives : ((cache -> 'a) -> 'a) cache_name
| Cygwin : ((cache -> 'a) -> 'a) cache_name
| OCaml : ((cache -> 'a) -> _ platform -> string -> string -> 'a) cache_name
| OpamBS : ((cache -> 'a) -> string -> string -> 'a) cache_name
| OpamRoot : ((cache -> 'a) -> string -> 'a) cache_name
| Opam12Root : ((cache -> 'a) -> 'a) cache_name
let cygwin_cache_directory = {|D:\Cache\cygwin|}
let get_cache_cont : type s . s cache_name -> s = function
| Archives ->
fun f -> f
{name = "src_ext/archives and opam-repository";
key = Printf.sprintf "${{ %s.outputs.archives }}";
id = "archives";
force_gzip = true;
paths = ["src_ext/archives"; "~/opam-repository"];
build = ["bash -exu .github/scripts/main/archives-cache.sh"];
build_shell = None}
| Cygwin ->
fun f -> f
{name = "Cygwin64";
key = Printf.sprintf "cygwin64-${{ %s.outputs.cygwin }}";
id = "cygwin64";
force_gzip = true;
paths = [Printf.sprintf "%s\\x86_64-pc-cygwin" cygwin_cache_directory];
build = [Printf.sprintf {|.github\scripts\cygwin.cmd x86_64-pc-cygwin %s create|} cygwin_cache_directory];
build_shell = Some "cmd"}
| OCaml ->
fun f (type a) (platform : a platform) version host ->
let if_windows =
match platform with
| Windows
| Specific (Windows, _) -> fun a _ -> a
| _ -> fun _ b -> b in
let is_windows = if_windows true false in f
{name = Printf.sprintf "OCaml %s" version;
key = Printf.sprintf "${{ runner.os }}%s-ocaml-%s-${{ %s.outputs.ocaml-cache }}" (if_windows ("-" ^ host) "") version;
id = "ocaml-cache";
force_gzip = is_windows;
paths = [if_windows {|D:\Cache\ocaml-local|} "~/.cache/ocaml-local/**"];
build = [Printf.sprintf "bash -exu .github/scripts/main/ocaml-cache.sh ${{ runner.os }} %s%s" version (if_windows (" " ^ host) "")];
build_shell = None}
| OpamBS ->
fun f version key_prefix -> f
{name = "opam bootstrap";
key = Printf.sprintf "opam%s-${{ runner.os }}-${{ env.OPAMBSVERSION }}-%s-${{ env.OPAM_REPO_SHA }}-${{ %s.outputs.opam-bs-cache }}" key_prefix version;
id = "opam-bootstrap";
force_gzip = false;
paths = ["${{ env.OPAMBSROOT }}/**"; "~/.cache/opam-local/bin/**"];
build = ["bash -exu .github/scripts/main/opam-bs-cache.sh"];
build_shell = None}
| OpamRoot ->
fun f version -> f
{name = "opam-rt";
key = Fun.const (Printf.sprintf "${{ runner.os }}-opam-rt-%s" version);
id = "opam-rt";
force_gzip = false;
paths = ["~/.cache/opam-rt/**"];
build = [];
build_shell = None}
| Opam12Root ->
fun f -> f
{name = "opam 1.2 root";
key = Fun.const ("${{ runner.os }}-opam1.2-root");
id = "";
force_gzip = false;
paths = ["${{ env.OPAM12CACHE }}"];
build = [];
build_shell = None}
let get_cache name = get_cache_cont name Fun.id
let cache ?cond ?(key_prefix="needs.Analyse") ?(check_only=false) name =
get_cache_cont name (fun cache ->
let action = "actions/cache@v4" in
let withs =
if cache.force_gzip then
[("enableCrossOsArchive", Literal ["true"])]
else
[] in
let withs =
if check_only then
("lookup-only", Literal ["true"]) :: withs
else
withs in
let withs =
("path", Literal cache.paths)::("key", Literal [cache.key key_prefix])::withs in
let id =
if cache.id = "" then None else Some cache.id
in
uses (cache.name ^ " Cache") ?cond ?id ~withs action)
let build_cache ?cond name =
get_cache_cont name (fun cache ->
let miss = Predicate (true, CacheMiss cache.id) in
let cond =
Option.map_default (fun cond -> Some (And [cond; miss])) (Some miss) cond
in
run ?cond ?shell:cache.build_shell (Printf.sprintf "Create %s cache" cache.name) cache.build)
let unpack_cygwin ?cond build host =
run ?cond ~shell:"cmd" "Unpack Cygwin" [Printf.sprintf {|.github\scripts\cygwin.cmd %s %s %s|} build cygwin_cache_directory host]
let install_sys_packages packages ~descr ?cond platforms =
let platforms = List.map os_of_platform platforms in
let packages = String.concat " " packages in
let linux_command = "sudo apt install " ^ packages in
let macos_command = "brew install " ^ packages in
match platforms with
| [Windows] -> skip_step
| _ ->
let not_windows = Predicate(false, Runner Windows) in
let cond =
if List.mem Windows platforms then
Option.map_default (fun cond -> Some (And [not_windows; cond])) (Some not_windows) cond
else
cond
in
let commands =
match platforms with
| [Linux] -> [linux_command]
| [MacOS] -> [macos_command]
| _ ->
let commands =
if List.mem MacOS platforms then
[Printf.sprintf "( test '${{ runner.os }}' == macOS && %s ) || true" macos_command]
else
[]
in
if List.mem Linux platforms then
(Printf.sprintf "( test '${{ runner.os }}' == Linux && %s ) || true" linux_command)::commands
else
commands
in
run ?cond descr commands
let install_sys_opam ?cond = install_sys_packages ["opam"] ~descr:"Install system's opam package" ?cond
let install_sys_dune ?cond = install_sys_packages ["dune"; "ocaml"] ~descr:"Install system's dune and ocaml packages" ?cond
(* The clean way to do it is to have the changed file in their proper job and
condition the other job to its output, but it will lead to extra steps
(checkout). The choice here is to add for all further steps the condition
on the output of 'files' step (modified files). *)
let changed_files ?withs () =
uses "Get changed files" ~id:"files"
~cond:(Predicate(true, Compare("github.event_name", "pull_request")))
?withs
(* ~continue_on_error:true see https://github.com/jitterbit/get-changed-files/issues/19 *)
"Ana06/get-changed-files@v2.3.0" (* see https://github.com/jitterbit/get-changed-files/issues/55 ; Ana06'fork contains #19 and #55 fixes *)
(** Jobs *)
let analyse_job ~oc ~workflow ~platforms ~keys f =
let oses = List.map os_of_platform platforms in
let outputs =
let f (key, _) = (key, Printf.sprintf "${{ steps.keys.outputs.%s }}" key) in
List.map f keys
in
let keys =
let set_key (name, value) =
[Printf.sprintf "echo %s=%s" name value;
Printf.sprintf "echo %s=%s >> $GITHUB_OUTPUT" name value]
in
List.flatten (List.map set_key keys)
in
let only_with platform step =
if List.mem platform oses then
step
else
skip_step
in
let linux_guard =
match oses with
| [Linux] -> None
| _ -> Some (Predicate(true, Runner Linux))
in
let not_windows_guard =
if List.mem Windows oses then
Some (Predicate(false, Runner Windows))
else
None
in
job ~oc ~workflow ~runs_on:(Runner platforms) ~outputs ~section:"Caches" "Analyse"
++ only_with Windows (git_lf_checkouts ~cond:(Predicate(true, Runner Windows)) ~shell:"cmd" ~title:"Configure Git for Windows" ())
++ checkout ()
++ run "Determine cache keys" ~id:"keys" keys
++ cache ?cond:linux_guard ~key_prefix:"steps.keys" ~check_only:true Archives
++ build_cache ?cond:not_windows_guard Archives
++ end_job f
let cygwin_job ~analyse_job ~oc ~workflow f =
let cygwin64 = get_cache Cygwin in
job ~oc ~workflow ~runs_on:(Runner [Windows]) ~needs:[analyse_job] "Cygwin"
++ cache ~check_only:true Cygwin
++ checkout ~cond:(Predicate(true, CacheMiss cygwin64.id)) ()
++ build_cache Cygwin
++ end_job f
let main_build_job ~analyse_job ~cygwin_job ?section runner start_version ~oc ~workflow f =
let platform = os_of_platform runner in
let only_on target = only_on platform target in
let not_on target = not_on platform target in
let shell =
if platform = Windows then
Some {|D:\cygwin\bin\bash.exe {0}|}
else None
in
(* Intentionally fail fast, no need to run all build if there is a
* problem in a given version; usually it is functions not defined in lower
* versions of OCaml. *)
let (matrix, includes) =
if platform = Windows then
let matrix =
let ocaml4 = [
"x86_64-pc-cygwin";
"i686-w64-mingw32";
"x86_64-w64-mingw32";
"i686-pc-windows";
"x86_64-pc-windows"
] in
let ocaml5 = [
"x86_64-pc-cygwin";
"x86_64-w64-mingw32";
"x86_64-pc-windows";
] in
let matrix_elem ocamlv hosts =
let elem ocaml host =
[("host", host); ("build", "x86_64-pc-cygwin"); ("ocamlv", ocaml)]
in
List.map (elem ocamlv) hosts
in
matrix_elem latest_ocaml4 ocaml4
@ matrix_elem latest_ocaml5 ocaml5
in
([], matrix)
else
let (_fail_fast, matrix, _) = platform_ocaml_matrix ~fail_fast:true start_version in
(matrix, []) in
let matrix = ((platform <> Windows), matrix, includes) in
let needs = if platform = Windows then [analyse_job; cygwin_job] else [analyse_job] in
let host = host_of_platform platform in
job ~oc ~workflow ~runs_on:(Runner [runner]) ?shell ?section ~needs ~matrix ("Build-" ^ name_of_platform platform)
++ only_on Linux (run "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ only_on MacOS (run "Install GNU patch" ["brew install gpatch"])
++ only_on Windows (git_lf_checkouts ~cond:(Predicate(true, EndsWith("matrix.host", "-pc-cygwin"))) ~shell:"cmd" ~title:"Configure LF checkout for Cygwin" ())
++ checkout ()
++ only_on Windows (cache ~cond:(Predicate(true, Compare("matrix.build", "x86_64-pc-cygwin"))) Cygwin)
++ cache Archives
++ cache OCaml platform "${{ matrix.ocamlv }}" host
++ only_on Windows (unpack_cygwin "${{ matrix.build }}" "${{ matrix.host }}")
++ only_on Windows (run "Cygwin info" ["uname -a"])
++ build_cache OCaml platform "${{ matrix.ocamlv }}" host
++ run "Build" ["bash -exu .github/scripts/main/main.sh " ^ host]
++ not_on Windows (run "Test (basic)" ["bash -exu .github/scripts/main/test.sh"])
++ only_on Windows (run ~cond:(Predicate(false, EndsWith("matrix.host", "-pc-cygwin"))) "Test \"static\" binaries on Windows" ["ldd ./opam.exe | test \"$(grep -v -F /cygdrive/c/Windows/)\" = ''"])
++ only_on Windows
(uses "Upload opam binaries for Windows"
~cond:(Predicate(true, EndsWith("matrix.host", "-pc-windows")))
~withs:[ ("name", Literal ["opam-exe-${{ matrix.host }}-${{ matrix.ocamlv }}-${{ matrix.build }}"]);
("path", Literal ["D:\\Local\\bin\\opam.exe"; "D:\\Local\\bin\\opam-installer.exe"; "D:\\Local\\bin\\opam-putenv.exe"]) ]
"actions/upload-artifact@v4")
++ only_on Windows (run "Test (basic - Cygwin)" ~cond:(Predicate(true, EndsWith("matrix.host", "-pc-cygwin"))) ["bash -exu .github/scripts/main/test.sh"])
++ only_on Windows (run "Test (basic - native Windows)" ~env:[("OPAMROOT", {|D:\a\opam\opam\.opam|})] ~shell:"cmd" ~cond:(Predicate(false, EndsWith("matrix.host", "-pc-cygwin")))
({|set Path=D:\Cache\ocaml-local\bin;%Path%|} ::
{|if "${{ matrix.host }}" equ "x86_64-pc-windows" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"|} ::
{|if "${{ matrix.host }}" equ "i686-pc-windows" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat"|} ::
run_or_fail [
{|opam init --yes --bare default git+file://%cd%/../../../opam-repository#${{ env.OPAM_TEST_REPO_SHA }} --no-git-location|};
{|opam switch --yes create default ocaml-system|};
{|opam env|};
(* TODO: Temporary: revert back to « opam install lwt » once the following tickets are fixed *)
(* https://github.com/ocaml/ocamlfind/pull/112 *)
(* https://github.com/ocsigen/lwt/issues/1081 *)
(* https://github.com/ocsigen/lwt/issues/1082 *)
{|opam pin add -yn git+https://github.com/dra27/ocamlfind.git#c9efeea72743b2ff59ef67d354e0a88a08804a2c|};
{|opam pin add --yes lwt 5.9.1|};
{|opam list|};
{|opam config report|};
]))
++ only_on Windows (run "Test (reftests)" ["bash -exu .github/scripts/main/reftests.sh ${{ matrix.host }}"])
++ end_job f
let main_test_job ~analyse_job ~build_linux_job ~build_windows_job:_ ~build_macOS_job:_ ?section runner ~oc ~workflow f =
let platform = os_of_platform runner in
let _ = assert (platform <> Windows) in
let only_on target = only_on platform target in
let needs =
match platform with
| Windows -> assert false (* Not at present implemented *)
| MacOS -> [analyse_job] (* This isn't gated on build_macOS_job for speed *)
| Linux -> [analyse_job; build_linux_job]
in
let matrix = platform_ocaml_matrix ~fail_fast:false start_latests_ocaml in
let host = host_of_platform platform in
let ocamlv = "${{ matrix.ocamlv }}" in
job ~oc ~workflow ?section ~runs_on:(Runner [runner])
~env:[("OPAM_TEST", "1"); ("GITHUB_PR_USER", "${{ github.event.pull_request.user.login }}")]
~matrix ~needs ("Test-" ^ name_of_platform platform)
++ only_on MacOS (install_sys_packages ["coreutils"; "gpatch"; "rsync"] ~descr:"Install gnu coreutils" [MacOS])
++ checkout ()
++ only_on Linux (run "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ cache Archives
++ cache OCaml platform ocamlv host
++ build_cache OCaml platform ocamlv host
++ cache OpamBS ocamlv ""
++ build_cache OpamBS ocamlv ""
++ cache OpamRoot ocamlv
++ run "Build (and test)" ["bash -exu .github/scripts/main/main.sh " ^ host]
++ run "Test (opam-rt)" ["bash -exu .github/scripts/main/opam-rt.sh"]
++ end_job f
let cold_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ?section runner ~oc ~workflow f =
let platform = os_of_platform runner in
(* TODO Windows steps not all here *)
let host = host_of_platform platform in
let only_on target = only_on platform target in
let needs = [analyse_job; (match platform with Linux -> build_linux_job | Windows -> build_windows_job | MacOS -> build_macOS_job)] in
job ~oc ~workflow ?section ~runs_on:(Runner [runner]) ~env:[("OPAM_COLD", "1")] ~needs ("Cold-" ^ name_of_platform platform)
++ only_on Linux (run "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ checkout ()
++ cache Archives
++ run "Cold" [
"make compiler";
"bash -exu .github/scripts/main/main.sh " ^ host]
++ run "Test (basic)" ["bash -exu .github/scripts/main/test.sh"]
++ end_job f
let doc_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ?section runner ~oc ~workflow f =
let platform = os_of_platform runner in
let host = host_of_platform platform in
let only_on target = only_on platform target in
let needs = [analyse_job; (match platform with Linux -> build_linux_job | Windows -> build_windows_job | MacOS -> build_macOS_job)] in
let env = [("OPAM_DOC", "1")] in
let matrix = platform_ocaml_matrix ~fail_fast:false start_latests_ocaml in
let ocamlv = "${{ matrix.ocamlv }}" in
job ~oc ~workflow ?section ~runs_on:(Runner [platform]) ~env ~needs ~matrix ("Doc-" ^ name_of_platform platform)
++ only_on Linux (run "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ run "Install man2html" ["sudo apt install man2html"]
++ checkout ()
++ cache Archives
++ cache OCaml platform ocamlv host
++ build_cache OCaml platform ocamlv host
++ cache OpamBS ocamlv "doc"
++ build_cache OpamBS ocamlv "doc"
++ run "Compile" ~env:[("BASE_REF_SHA", "${{ github.event.pull_request.base.sha }}"); ("PR_REF_SHA", "${{ github.event.pull_request.head.sha }}")] ["bash -exu .github/scripts/main/main.sh " ^ host]
++ end_job f
let solvers_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ?section runner ~oc ~workflow f =
let platform = os_of_platform runner in
(* TODO Windows steps not all here *)
let host = host_of_platform platform in
let only_on target = only_on platform target in
let needs = [analyse_job; (match platform with Linux -> build_linux_job | Windows -> build_windows_job | MacOS -> build_macOS_job)] in
let env = [("SOLVER", "${{ matrix.solver }}"); ("OPAMBSROOT", "~/.cache/opam.${{ matrix.solver }}.cached")] in
let (fail_fast, matrix, _) = platform_ocaml_matrix ~fail_fast:false start_latests_ocaml in
let matrix =
(fail_fast, ("solver", ["z3"; "0install"])::matrix, [])
in
let withs = [ "filter", Literal [ "src/solver/**"] ] in
let cond =
match runner with
| MacOS -> Some (Predicate(false, Compare("steps.files.outputs.all", "")))
| _ -> None
in
let ocamlv = "${{ matrix.ocamlv }}" in
job ~oc ~workflow ?section ~runs_on:(Runner [runner]) ~env ~needs ~matrix ("Solvers-" ^ name_of_platform platform)
++ only_on Linux (run "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ checkout ()
++ only_on MacOS (changed_files ~withs ())
++ cache ?cond Archives
++ cache ?cond OCaml platform ocamlv host
++ build_cache ?cond OCaml platform ocamlv host
++ cache ?cond OpamBS ocamlv "-${{ matrix.solver }}"
++ build_cache ?cond OpamBS ocamlv "-${{ matrix.solver }}"
++ run ?cond "Compile" ["bash -exu .github/scripts/main/solvers.sh"]
++ end_job f
let upgrade_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ?section runner ~oc ~workflow f =
let platform = os_of_platform runner in
let _ = assert (platform <> Windows) in (* No opam 1.x for Windows *)
let host = host_of_platform platform in
let only_on target = only_on platform target in
let needs = [analyse_job; (match platform with Linux -> build_linux_job | Windows -> build_windows_job | MacOS -> build_macOS_job)] in
let matrix = platform_ocaml_matrix ~fail_fast:false start_latests_ocaml in
let ocamlv = "${{ matrix.ocamlv }}" in
job ~oc ~workflow ?section ~runs_on:(Runner [runner]) ~needs ~matrix ("Upgrade-" ^ name_of_platform platform)
++ only_on Linux (run "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ checkout ()
++ cache Opam12Root
++ cache OCaml platform ocamlv host
++ build_cache OCaml platform ocamlv host
++ run "Build" ~env:[("OPAM_UPGRADE", "1")] ["bash -exu .github/scripts/main/main.sh " ^ host]
++ run "Test (upgrade)" ["bash -exu .github/scripts/main/upgrade.sh"]
++ end_job f
let depends_job ~analyse_job ~build_linux_job ?section runner ~oc ~workflow f =
let platform = os_of_platform runner in
let host = host_of_platform platform in
let only_on target = only_on platform target in
let needs = [analyse_job; build_linux_job ] in
let env = [("OPAM_DEPENDS", "1")] in
let matrix = platform_ocaml_matrix ~fail_fast:false start_latests_ocaml in
let ocamlv = "${{ matrix.ocamlv }}" in
let fail_if_dependent = ["opam-publish"; "opam-rt"; "opam-build"; "opam-test"] in
let cond = Predicate(false, Compare("steps.files.outputs.all", "")) in
job ~oc ~workflow ?section ~runs_on:(Runner [platform]) ~env ~needs ~matrix
("Depends-" ^ name_of_platform platform)
++ checkout ()
++ changed_files ~withs:[ "filter", Literal ["src/**/*.mli"] ] ()
++ cache ~cond Archives
++ only_on Linux (run ~cond "Install bubblewrap" ["sudo apt install bubblewrap"])
++ only_on Linux (run ~cond "Disable AppArmor" ["echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns"])
++ cache ~cond OCaml platform ocamlv host
++ build_cache ~cond OCaml platform ocamlv host
++ cache ~cond OpamBS ocamlv "depends"
++ build_cache ~cond OpamBS ocamlv "depends"
++ run ~cond "Compile" ~env:[("BASE_REF_SHA", "${{ github.event.pull_request.base.sha }}");
("PR_REF_SHA", "${{ github.event.pull_request.head.sha }}");
("GITHUB_PR_USER", "${{ github.event.pull_request.user.login }}");
("JOB_URL", "${{ steps.get-job-id.outputs.job_url }}");
("FAIL_IF_DEPENDENT", String.concat " " fail_if_dependent)]
["bash -exu .github/scripts/main/main.sh " ^ host]
++ end_job f
let hygiene_job (type a) ~analyse_job (platform : a platform) ~oc ~workflow f =
let cond = Predicate(false, Compare("steps.files.outputs.all", "")) in
let withs = [ "filter", Literal [ "configure.ac"; "shell/install.sh"; "src_ext/**"; ".github/workflows/**"] ] in
job ~oc ~workflow ~section:"Around opam tests" ~runs_on:(Runner [platform]) ~needs:[analyse_job] "Hygiene"
++ checkout ()
++ changed_files ~withs ()
++ install_sys_dune ~cond [os_of_platform platform]
++ cache ~cond Archives
++ run "Hygiene" ~cond
~env:[("BASE_REF_SHA", "${{ github.event.pull_request.base.sha }}");
("PR_REF_SHA", "${{ github.event.pull_request.head.sha }}")]
["bash -exu .github/scripts/main/hygiene.sh"]
++ end_job f
let empty_job ~oc ~workflow f
(* ~analyse_job:_ *)
(* ~build_linux_job:_ *)
(* ~build_windows_job:_ *)
(* ~build_macOS_job:_ *)
(* ~uploadbin_label_job:_ *)
=
job ~oc ~workflow ~runs_on:(Runner [Linux]) "NO-OP"
++ run "no-op" ["echo something"]
++ end_job f
let main oc : unit =
let env = [
("OPAMBSVERSION", "2.1.0");
("OPAMBSROOT", "~/.cache/.opam.cached");
("OPAM12CACHE", "~/.cache/opam1.2/cache");
(* These should be identical to the values in appveyor.yml *)
("OPAM_REPO", "https://github.com/ocaml/opam-repository.git");
("OPAM_TEST_REPO_SHA", "38a1469dbbc69c770e534e26f79c97256a442b71");
("OPAM_REPO_SHA", "38a1469dbbc69c770e534e26f79c97256a442b71");
("SOLVER", "");
(* Cygwin configuration *)
("CYGWIN_MIRROR", "http://mirrors.kernel.org/sourceware/cygwin/");
("CYGWIN_ROOT", "D:\\cygwin");
("CYGWIN", "winsymlinks:native");
("CYGWIN_EPOCH", "4");
] in
let keys = [
("archives", "archives-1-${{ hashFiles('src_ext/Makefile.dune', 'src_ext/Makefile.sources', 'src_ext/Makefile', '.github/scripts/common/preamble.sh', '.github/scripts/main/preamble.sh', '.github/scripts/main/archives-cache.sh') }}-${{ env.OPAM_REPO_SHA }}");
("ocaml-cache", "${{ hashFiles('src_ext/Makefile.dune', '.github/scripts/main/ocaml-cache.sh', '.github/scripts/main/preamble.sh') }}");
("cygwin", "${{ hashFiles('.github/scripts/cygwin.cmd') }}-${{ env.CYGWIN_EPOCH }}");
("opam-bs-cache", "${{ hashFiles('.github/scripts/main/opam-bs-cache.sh', '*.opam', '.github/scripts/main/preamble.sh') }}");
] in
workflow ~oc ~env "Builds, tests & co"
++ analyse_job ~keys ~platforms:[Linux]
@@ fun analyse_job -> cygwin_job ~analyse_job
@@ fun cygwin_job -> main_build_job ~analyse_job ~cygwin_job ~section:"Build" Linux (4, 08)
@@ fun build_linux_job -> main_build_job ~analyse_job ~cygwin_job Windows start_latests_ocaml
@@ fun build_windows_job -> main_build_job ~analyse_job ~cygwin_job MacOS start_latests_ocaml
@@ fun build_macOS_job -> main_test_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ~section:"Opam tests" Linux
@@ fun _ -> main_test_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job MacOS
@@ fun _ -> cold_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ~section:"Opam cold" Linux
@@ fun _ -> doc_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ~section:"Compile doc" Linux
@@ fun _ -> solvers_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ~section:"Compile solver backends" Linux
@@ fun _ -> solvers_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job MacOS
@@ fun _ -> upgrade_job ~analyse_job ~build_linux_job ~build_windows_job ~build_macOS_job ~section:"Upgrade from 1.2 to current" Linux
@@ fun _ -> hygiene_job ~analyse_job (Specific (Linux, "22.04"))
@@ fun _ -> depends_job ~analyse_job ~build_linux_job Linux
@@ fun _ -> end_workflow
let () =
let oc = open_out "main.yml" in
main oc;
close_out oc
|