diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-10-14 16:12:20 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-10-15 09:35:02 +0200 |
commit | a4c86a7f07d81450c5e0147c27ed737b7af4547c (patch) | |
tree | 89b555e7a4d3644d6cc03dc74caaf930e60b0786 /.github/workflows | |
parent | dbb6ee4d70ce080b452791a5a6d0f7ec3ac78f91 (diff) | |
download | tigervnc-a4c86a7f07d81450c5e0147c27ed737b7af4547c.tar.gz tigervnc-a4c86a7f07d81450c5e0147c27ed737b7af4547c.zip |
Explicity install missing deps GitHub Actions
We seem to have gotten this implicitly before, but now that GitHub has
switched to Ubuntu 24.04 we have to be explicit about it.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c23cada9..1cf3b5e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,7 @@ jobs: run: | sudo apt-get update sudo apt-get install -y libfltk1.3-dev fluid gettext appstream + sudo apt-get install -y libpixman-1-dev libjpeg-turbo8-dev sudo apt-get install -y libgnutls28-dev nettle-dev libgmp-dev sudo apt-get install -y libxtst-dev libxdamage-dev libxfixes-dev libxrandr-dev libpam-dev sudo apt-get install -y libavcodec-dev libavutil-dev libswscale-dev |