From e187aec488eedb50823482be0896b342ce8f6d2b Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Mon, 1 Dec 2025 19:49:30 -0500 Subject: [PATCH] chore: skip setting LPAC ACLs --- patches/chromium/.patches | 1 + ...ore_disable_set_appcontainer_acls_py.patch | 21 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 patches/chromium/chore_disable_set_appcontainer_acls_py.patch diff --git a/patches/chromium/.patches b/patches/chromium/.patches index 5881ab1840..1b5536b466 100644 --- a/patches/chromium/.patches +++ b/patches/chromium/.patches @@ -142,3 +142,4 @@ expose_referrerscriptinfo_hostdefinedoptionsindex.patch chore_disable_protocol_handler_dcheck.patch fix_check_for_file_existence_before_setting_mtime.patch fix_linux_tray_id.patch +chore_disable_set_appcontainer_acls_py.patch diff --git a/patches/chromium/chore_disable_set_appcontainer_acls_py.patch b/patches/chromium/chore_disable_set_appcontainer_acls_py.patch new file mode 100644 index 0000000000..fb51f0d46f --- /dev/null +++ b/patches/chromium/chore_disable_set_appcontainer_acls_py.patch @@ -0,0 +1,21 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: John Kleinschmidt +Date: Tue, 2 Dec 2025 13:19:50 -0500 +Subject: chore: disable set_appcontainer_acls.py + +Setting the LPAC ACLS is causing issues when running on our Windows 2022 +CI servers, so disable this step. + +diff --git a/testing/scripts/common.py b/testing/scripts/common.py +index 208b0d1deffd97dc044c70c0c837f2401b419620..2b588f8c15e39d5dc8fbe170accceac5d13a0d7a 100644 +--- a/testing/scripts/common.py ++++ b/testing/scripts/common.py +@@ -62,7 +62,7 @@ CORRECT_ACL_VARIANTS = [ + + def set_lpac_acls(acl_dir, is_test_script=False): + """Sets LPAC ACLs on a directory. Windows 10 only.""" +- if platform.release() != '10': ++ if '11' != '10': + return + try: + existing_acls = subprocess.check_output(['icacls', acl_dir],