Skip to content

Commit

Permalink
Add two GCC versions to build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lethosor committed Oct 7, 2020
1 parent d850389 commit 615bb81
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
gcc:
- 7
- 9
steps:
- name: Set up Python 3
uses: actions/setup-python@v2
Expand Down Expand Up @@ -44,6 +50,9 @@ jobs:
run: |
sh travis/download-df.sh
- name: Build DFHack
env:
CC: gcc-${{ matrix.gcc }}
CXX: g++-${{ matrix.gcc }}
run: |
cmake \
-S . \
Expand Down

0 comments on commit 615bb81

Please sign in to comment.