diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-10-14 16:12:20 +0200 |
---|---|---|
committer | Linn Mattsson <linma@cendio.se> | 2024-10-17 16:34:39 +0200 |
commit | eaf3e3c6e1b5bc154c3f7332cb164539b6316e25 (patch) | |
tree | ff5ed71d99d861cd5d8c88c9fa69afe8aaf969dc | |
parent | 4a09a96661624dff14662d6e9849e06a6c70ae03 (diff) | |
download | tigervnc-eaf3e3c6e1b5bc154c3f7332cb164539b6316e25.tar.gz tigervnc-eaf3e3c6e1b5bc154c3f7332cb164539b6316e25.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.
(cherry picked from commit a4c86a7f07d81450c5e0147c27ed737b7af4547c)
-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 |