Skip to content

Commit

Permalink
Fix Linux CI on Ubuntu 24.04
Browse files Browse the repository at this point in the history
Need to install libjpeg and libpng dependencies
  • Loading branch information
dpogue committed Dec 25, 2024
1 parent f1f4cd8 commit 45b9e46
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libkf5syntaxhighlighting-dev ninja-build qtbase5-dev
sudo apt-get install -y \
libjpeg-turbo8-dev \
libkf5syntaxhighlighting-dev \
libpng-dev \
ninja-build \
qtbase5-dev
- name: Checkout string_theory
uses: actions/checkout@v4
Expand Down

0 comments on commit 45b9e46

Please sign in to comment.