Skip to content

Commit

Permalink
🎨 [CI] Specify the exact version of clang to use
Browse files Browse the repository at this point in the history
Problem:
- The version of clang to use is specified only as `clang++`. This is
  inconsistent with the specifications for gcc and exposed to unexpected
  failure if the default changes.

Solution:
- Specify the exact version of clang to use. I chose `clang++-9` as that
  is the version that `clang++` is currently resolving to.
  • Loading branch information
Jonathan Gopel committed Nov 7, 2020
1 parent a4fae96 commit 031246a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
cxx: [g++-4.8, g++-8, g++-10, clang++]
cxx: [g++-4.8, g++-8, g++-10, clang++-9]
build_type: [Debug, Release]
include:
- cxx: clang++
- cxx: clang++-9
build_type: Debug
fuzz: -DFMT_FUZZ=ON -DFMT_FUZZ_LINKMAIN=ON
- cxx: g++-4.8
Expand Down

0 comments on commit 031246a

Please sign in to comment.