From d8f09d377fdd7ebe53dd48a4f023f44cc084b93b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 16 Aug 2021 22:15:27 +0530 Subject: [PATCH] Install ca-certificates on Linux CI machines --- .github/workflows/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index 8b7f95f43..785691ca9 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -34,7 +34,7 @@ def install_deps(): run('brew', 'install', *items) else: run('sudo apt-get update') - run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev' + run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates' ' libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev libx11-xcb-dev' ' libpng-dev liblcms2-dev libfontconfig-dev libxkbcommon-x11-dev libcanberra-dev uuid-dev') if is_bundle: