From fd20908dcd43f0f4c76669fb1ffd46c7a4793871 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 13 Oct 2019 09:56:00 +0530 Subject: [PATCH] Try running update/upgrade on Ubuntu CI VM in the hopes it will fix the libgl1 installation failure --- setup/unix-ci.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 293c1bfdda..2a89044db3 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -107,6 +107,8 @@ def main(): 'https://download.calibre-ebook.com/ci/calibre/{}.tar.xz'.format(tball), SW ) if not ismacos: + run('sudo', 'apt-get', 'update', '-y') + run('sudo', 'apt-get', 'upgrade', '-y') run('sudo', 'apt-get', 'install', '-y', 'gettext', 'libgl1-mesa-dev') elif action == 'bootstrap':