From 4328e81dde1bd2d4d0b8ff88b2312b2f8e6e0105 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 27 Aug 2021 21:46:49 +0200 Subject: [PATCH] Install 32 bit OpenGL libraries explicitly in the CI workflow For some reason 32 bit libgl1 is not pulled in as win32 dependency any more, resulting in errors when running the test using Direct2D. Fix this by installing the package explicitly. --- .github/workflows/ci_msw_cross.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_msw_cross.yml b/.github/workflows/ci_msw_cross.yml index 993d8f7696..b0a093d064 100644 --- a/.github/workflows/ci_msw_cross.yml +++ b/.github/workflows/ci_msw_cross.yml @@ -106,7 +106,7 @@ jobs: i686-w64-mingw32) sudo dpkg --add-architecture i386 sudo apt-get -q -o=Dpkg::Use-Pty=0 update - packages="$packages g++-mingw-w64-i686 wine32" + packages="$packages g++-mingw-w64-i686 wine32 libgl1:i386" winerun=wine ;;