From b124c49ea4823975c35216c14dbfb93ada34fcd3 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Fri, 19 Feb 2021 19:34:40 +0100 Subject: [PATCH] Fix: [Actions] Also run CI against libsdl1.2 for every pull request --- .github/workflows/ci-build.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 4fbb04dbd3..7996fd9be5 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -66,10 +66,15 @@ jobs: fail-fast: false matrix: include: - - compiler: clang - cxxcompiler: clang++ - - compiler: gcc - cxxcompiler: g++ + - compiler: clang + cxxcompiler: clang++ + libsdl: libsdl2-dev + - compiler: gcc + cxxcompiler: g++ + libsdl: libsdl2-dev + - compiler: gcc + cxxcompiler: g++ + libsdl: libsdl1.2-dev runs-on: ubuntu-20.04 env: @@ -93,7 +98,7 @@ jobs: libicu-dev \ liblzma-dev \ liblzo2-dev \ - libsdl2-dev \ + ${{ matrix.libsdl }} \ zlib1g-dev \ # EOF echo "::endgroup::"