Skip to content

Commit bd6ae39

Browse files
add missing libfontconfig dependency for PR test workflow (#7382)
Fix issue with our Linux build image where libfontconfig1 isn't installed, but is needed by some Qt5 libs. Since aqt is used to install a more up-to-date Qt5 version than what's provided by the distro we don't have the usual dependency resolution needed to prevent this. This is a stop-gap measure to fix testing of pull requests for QtFred, and only applies to that specifc workflow. The arm64 Linux image also has a broken Qt install so this workaround is useless with normal workflows. A proper fix will require updating the Linux build image to fix the Qt dependency problem and related issues.
1 parent ced4fd3 commit bd6ae39

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/test-pull_request.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
runs-on: ubuntu-latest
3131
container: ghcr.io/scp-fs2open/linux_build:sha-71099c9
3232
steps:
33+
- name: Install Qt dependencies
34+
run: apt-get -yq update && apt-get -yq install libfontconfig1
3335
- uses: actions/checkout@v1
3436
name: Checkout
3537
with:

0 commit comments

Comments
 (0)