From cb318a5599848b966dc67c697a06ab92dd4756f1 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Fri, 16 May 2025 15:24:23 +0200 Subject: [PATCH] build: update dev-infra for latest RBE changes (#31137) Update dev-infra for latest RBE changes. --- WORKSPACE | 4 ++-- docs/tools/lighthouse-audit.mjs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 44f979de7156..781383c0b9db 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -190,7 +190,7 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") git_repository( name = "devinfra", - commit = "c4f7d3cdec164044284139182b709dfd4be339ed", + commit = "90560ac34ffbb40189d98d8e54110e9c43575761", remote = "https://github.com/angular/dev-infra.git", ) @@ -243,7 +243,7 @@ esbuild_register_toolchains( git_repository( name = "rules_browsers", - commit = "671017c30c0a595d7d639f59c6985255e4b90e0a", + commit = "fd3b3d37662206a19eaa34f157c757b3291978dc", remote = "https://github.com/devversion/rules_browsers.git", ) diff --git a/docs/tools/lighthouse-audit.mjs b/docs/tools/lighthouse-audit.mjs index ec8902b5568b..9aa71f5dbc4e 100644 --- a/docs/tools/lighthouse-audit.mjs +++ b/docs/tools/lighthouse-audit.mjs @@ -141,6 +141,7 @@ async function launchChromeAndRunLighthouse(url, flags, config) { const browser = await puppeteer.launch({ // Allow for a custom chromium to be provided (e.g. for M1 native support) executablePath: process.env.CHROMIUM_BIN, + args: ['--no-sandbox'], headless: 'new', });