Add GCC 4.8 to build matrix

develop
lethosor 2020-10-07 11:37:46 -04:00
parent 673d1c623f
commit c4da68b3a3
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
1 changed files with 5 additions and 0 deletions

@ -10,6 +10,7 @@ jobs:
fail-fast: false
matrix:
gcc:
- 4.8
- 7
- 9
steps:
@ -30,6 +31,10 @@ jobs:
ninja-build \
zlib1g-dev
pip install sphinx
- name: Install GCC
if: ${{ matrix.gcc < 7 }}
run: |
sudo apt-get install gcc-${{ matrix.gcc }} g++-${{ matrix.gcc }}
- name: Clone DFHack
uses: actions/checkout@v1
with: