From c4da68b3a37a487cb8e68f7dd14e71bbe0f44e55 Mon Sep 17 00:00:00 2001 From: lethosor Date: Wed, 7 Oct 2020 11:37:46 -0400 Subject: [PATCH] Add GCC 4.8 to build matrix --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c85ef1e1f..4a575935a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: