From 825472556866f473e577c150fed8da9eb84d5b79 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 8 Apr 2020 05:31:16 +0200 Subject: github ci: reduce parallelism to decrease container overhead --- .github/workflows/c.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 2be7fd6..941075e 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -17,8 +17,6 @@ jobs: matrix: curl: [0, 1] exif: [0, 1] - inotify: [0, 1] - verscmp: [0, 1] xinerama: [0, 1] steps: @@ -34,7 +32,5 @@ jobs: - name: Install Xinerama if: matrix.xinerama run: sudo apt install libxinerama-dev - - name: Build - run: make curl=${{ matrix.curl }} exif=${{ matrix.exif }} inotify=${{ matrix.inotify }} verscmp=${{ matrix.verscmp }} xinerama=${{ matrix.xinerama }} - - name: run Tests - run: make test + - 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 -- cgit v1.2.3