mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-28 21:01:04 +00:00
🎨 [CI] Specify the exact version of clang to use (#1991)
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. Co-authored-by: Jonathan Gopel <jgopel@quantlab.com>
This commit is contained in:
parent
701ed6c874
commit
b3ab0bc7e3
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user