Skip to content

Commit

Permalink
Fix: [Actions] Also run CI against libsdl1.2 for every pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
TrueBrain committed Feb 19, 2021
1 parent c4848a5 commit 12bb603
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci-build.yml
Expand Up @@ -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:
Expand All @@ -93,7 +98,7 @@ jobs:
libicu-dev \
liblzma-dev \
liblzo2-dev \
libsdl2-dev \
${{ matrix.libsdl }} \
zlib1g-dev \
# EOF
echo "::endgroup::"
Expand Down

0 comments on commit 12bb603

Please sign in to comment.