Fix: [Actions] Also run CI against libsdl1.2 for every pull request

This commit is contained in:
Patric Stout 2021-02-19 19:34:40 +01:00 committed by Patric Stout
parent 8bf8c0f251
commit b124c49ea4
1 changed files with 10 additions and 5 deletions

View File

@ -66,10 +66,15 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- compiler: clang - compiler: clang
cxxcompiler: clang++ cxxcompiler: clang++
- compiler: gcc libsdl: libsdl2-dev
cxxcompiler: g++ - compiler: gcc
cxxcompiler: g++
libsdl: libsdl2-dev
- compiler: gcc
cxxcompiler: g++
libsdl: libsdl1.2-dev
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
env: env:
@ -93,7 +98,7 @@ jobs:
libicu-dev \ libicu-dev \
liblzma-dev \ liblzma-dev \
liblzo2-dev \ liblzo2-dev \
libsdl2-dev \ ${{ matrix.libsdl }} \
zlib1g-dev \ zlib1g-dev \
# EOF # EOF
echo "::endgroup::" echo "::endgroup::"