Skip to content

Commit

Permalink
Use GCC 10 in GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
wilx committed Dec 25, 2023
1 parent cae7739 commit 9d6c46d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ jobs:
build:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
config:
- os: 'ubuntu-latest'
cc: 'gcc-10'
cxx: 'g++-10'
- os: 'macos-latest'
cc: 'clang'
cxx: 'clang++'


runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.config.os }}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 9d6c46d

Please sign in to comment.