We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d465d commit 3967023Copy full SHA for 3967023
src/pipelines/skeleton.ml
@@ -3,15 +3,11 @@ open Common
3
4
type 'a build_mode = Mirage_4 of { overlay : 'a option }
5
6
-let targets = [ "unix"; "hvt"; "xen"; "unikraft-qemu" ]
+let targets = [ "unix"; "hvt"; "xen" ]
7
(* "virtio"; "spt"; "muen" ]*)
8
9
-let is_unikraft_available_on (platform : Platform.t) =
10
- match platform.system.ocaml with V5_3 | V5_4 -> true | _ -> false
11
-
12
let is_available_on (platform : Platform.t) = function
13
| "unix" | "hvt" -> true
14
- | "unikraft-qemu" -> is_unikraft_available_on platform
15
| "xen" when platform.arch = Amd64 -> true
16
| _ -> false
17
0 commit comments