summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-08-28 23:30:51 +0200
committerDaniel Friesel <derf@finalrewind.org>2020-08-28 23:30:51 +0200
commit8f4577713d44a688288cea7c14f371644cb1fa27 (patch)
treec9ff3f17bd47acadf09a919530f7110a0e16fbad /.github
parente43916d7d1409e4031d56ee1704456bef55eeb1d (diff)
Github CI: oh FFS
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/c.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml
index 941075e..e7a4207 100644
--- a/.github/workflows/c.yml
+++ b/.github/workflows/c.yml
@@ -21,16 +21,18 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - name: APT
+ run: sudo apt-get -y update
- name: Install Dependencies
- run: sudo apt install build-essential libx11-dev libxt-dev libimlib2-dev libtest-command-perl libtest-simple-perl
+ 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 install libcurl4-openssl-dev
+ run: sudo apt-get -y install libcurl4-openssl-dev
- name: Install libexif
if: matrix.exif
- run: sudo apt install libexif-dev
+ run: sudo apt-get -y install libexif-dev
- name: Install Xinerama
if: matrix.xinerama
- run: sudo apt 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