From e10cb4a619ca8975b25af97f6162b2ced196299f Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 24 Jan 2022 17:20:28 -0700 Subject: [PATCH] devops: fix Firefox on Ubuntu 20.04 aarch64 (#11602) Turns out Firefox 96 now requires libxtst6 on Ubuntu 20.04 aarch64. --- packages/playwright-core/src/utils/nativeDeps.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/playwright-core/src/utils/nativeDeps.ts b/packages/playwright-core/src/utils/nativeDeps.ts index 3af2acbab1..ea59cca8d0 100644 --- a/packages/playwright-core/src/utils/nativeDeps.ts +++ b/packages/playwright-core/src/utils/nativeDeps.ts @@ -644,7 +644,10 @@ export const deps: any = { deps['ubuntu20.04-arm64'] = { tools: [...deps['ubuntu20.04'].tools], chromium: [...deps['ubuntu20.04'].chromium], - firefox: [...deps['ubuntu20.04'].firefox], + firefox: [ + ...deps['ubuntu20.04'].firefox, + 'libxtst6' + ], webkit: [ ...deps['ubuntu20.04'].webkit, 'libevent-2.1-7',