Skip to content

Commit 5f61ed9

Browse files
authored
Add libjpeg-dev dep to smoke
1 parent 7687256 commit 5f61ed9

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/smoke.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: smoke
22
on:
3+
workflow_dispatch:
34
push:
45
branches: main
56
paths-ignore:
@@ -58,8 +59,18 @@ jobs:
5859
case ${{ matrix.config.os }} in
5960
ubuntu-24.04)
6061
sudo apt-get update
61-
sudo apt-get install autoconf automake build-essential cmake \
62-
libtool pkg-config nasm zlib1g-dev libvorbis-dev libx264-dev
62+
sudo apt-get install \
63+
autoconf \
64+
automake \
65+
build-essential \
66+
cmake \
67+
libjpeg-dev \
68+
libtool \
69+
libvorbis-dev \
70+
libx264-dev \
71+
nasm \
72+
pkg-config \
73+
zlib1g-dev
6374
if [[ "${{ matrix.config.extras }}" ]]; then
6475
sudo apt-get install doxygen wget
6576
fi

0 commit comments

Comments
 (0)