summaryrefslogtreecommitdiff
path: root/.github/workflows/c.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/c.yml')
-rw-r--r--.github/workflows/c.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml
index e7a4207..5477164 100644
--- a/.github/workflows/c.yml
+++ b/.github/workflows/c.yml
@@ -27,12 +27,12 @@ jobs:
run: sudo apt-get -y install build-essential libx11-dev libxt-dev libimlib2-dev libtest-command-perl libtest-simple-perl
- name: Install libcurl
if: matrix.curl
- run: sudo apt-get -y install libcurl4-openssl-dev
+ run: sudo apt-get -y install libcurl4-openssl-dev
- name: Install libexif
if: matrix.exif
- run: sudo apt-get -y install libexif-dev
+ run: sudo apt-get -y install libexif-dev
- name: Install Xinerama
if: matrix.xinerama
- run: sudo apt-get -y install libxinerama-dev
+ run: sudo apt-get -y install libxinerama-dev
- name: Build and Test
run: for inotify in 0 1; do for verscmp in 0 1; do make curl=${{ matrix.curl }} exif=${{ matrix.exif }} inotify=$inotify verscmp=$verscmp xinerama=${{ matrix.xinerama }} && make test && make clean; done; done