Skip to content

Commit

Permalink
ci(linux): use eio_posix instead of eio_linux until GH runners upgrad…
Browse files Browse the repository at this point in the history
…e kernel
  • Loading branch information
anmonteiro committed Aug 2, 2023
1 parent c19b680 commit 233a5d2
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion nix/ci/test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,22 @@ let
pkgs = import src {
extraOverlays = [
(self: super: {
ocamlPackages = super.ocaml-ng."ocamlPackages_${ocamlVersion}";
ocamlPackages = super.ocaml-ng."ocamlPackages_${ocamlVersion}".overrideScope'
(oself: osuper: {
uring = osuper.uring.overrideAttrs (_: {
src = super.fetchFromGitHub {
owner = "ocaml-multicore";
repo = "ocaml-uring";
rev = "fbdd72770f78c4b4268ddd662171f7705cf2a116";
hash = "sha256-3FAMsk26BrC1YVSFoq7B762ZJiDbpaMO9kAYxas6BLw=";
};
});
# eio_main = osuper.eio_main.overrideAttrs (_: {
# # Use eio_posix until the kernel version for GH Actions gets rolled
# # forward. There seems to be a io_uring bug
# propagatedBuildInputs = [ eio_posix ];
# });
});
})
];
};
Expand Down

0 comments on commit 233a5d2

Please sign in to comment.