From c914ca5e6b5a0e8abc78526beea1936391eb716d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 23 Dec 2021 14:46:23 +0530 Subject: [PATCH] Need XKB dev packages on CI to build headless --- setup/unix-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 1d5e3bd4d0..49da1b7aad 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -107,7 +107,7 @@ def run_python(*args): def install_linux_deps(): run('sudo', 'apt-get', 'update', '-y') # run('sudo', 'apt-get', 'upgrade', '-y') - run('sudo', 'apt-get', 'install', '-y', 'gettext', 'libgl1-mesa-dev') + run('sudo', 'apt-get', 'install', '-y', 'gettext', 'libgl1-mesa-dev', 'libxkbcommon-dev', 'libxkbcommon-x11-dev') def get_tx_tarball_url():