Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LCU Update June 2022 #98

Merged
merged 1 commit into from
Jul 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src-opam/dockerfile_distro.ml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ type win10_ltsc = [

type win10_lcu = [
| `LCU
| `LCU20220614
| `LCU20220510
| `LCU20220412
| `LCU20220308
Expand All @@ -46,12 +47,18 @@ type win10_lcu = [

type win_all = [ win10_release | win10_ltsc ] [@@deriving sexp]

let win10_current_lcu = `LCU20220510
let win10_current_lcu = `LCU20220614

type win10_revision = win10_release * win10_lcu option [@@deriving sexp]

let win10_lcus : ('a * int * win10_release list) list = [

`LCU20220614, 5014678, [`V21H2];
`LCU20220614, 5014699, [`V20H2; `V21H1];
`LCU20220614, 5014692, [`V1809];
`LCU20220614, 5014702, [`V1607];
`LCU20220614, 5014710, [`V1507];

`LCU20220510, 5013944, [`V21H2];
`LCU20220510, 5013942, [`V20H2; `V21H1];
`LCU20220510, 5013945, [`V1909];
Expand Down
1 change: 1 addition & 0 deletions src-opam/dockerfile_distro.mli
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ type win_all = [ win10_release | win10_ltsc ] [@@deriving sexp]

type win10_lcu = [
| `LCU
| `LCU20220614
| `LCU20220510
| `LCU20220412
| `LCU20220308
Expand Down