Skip to content

Commit

Permalink
Fix clang to newer version in Ubuntu 22 pipelines
Browse files Browse the repository at this point in the history
Following this declaration:
actions/runner-images#8263
updated the Ubuntu 22.04 clang pipelines to use clang(++) version 13
as Github only wants to support the latest 3 versions of clang, which
are 13,14,15 starting 25.09.2023

Signed-off-by: Martijn Reicher <[email protected]>
  • Loading branch information
reicheratwork authored and eboasson committed Nov 8, 2023
1 parent 0ddd39b commit 4b53f4d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,39 +51,39 @@ strategy:
sanitizer: address,undefined
cc: gcc-12
cxx: g++-12
'Ubuntu 22.04 LTS with CLang 12 (Debug, x86_64)':
'Ubuntu 22.04 LTS with CLang 13 (Debug, x86_64)':
image: ubuntu-22.04
analyzer: on
sanitizer: address
cc: clang-12
cxx: clang++-12
'Ubuntu 22.04 LTS with CLang 12 (Debug, x86_64, Iceoryx)':
cc: clang-13
cxx: clang++-13
'Ubuntu 22.04 LTS with CLang 13 (Debug, x86_64, Iceoryx)':
image: ubuntu-22.04
iceoryx: on
analyzer: on
sanitizer: address,undefined
cc: clang-12
cxx: clang++-12
'Ubuntu 22.04 LTS with CLang 12 (Release, x86_64)':
cc: clang-13
cxx: clang++-13
'Ubuntu 22.04 LTS with CLang 13 (Release, x86_64)':
image: ubuntu-22.04
build_type: Release
sanitizer: address,undefined
cc: clang-12
cxx: clang++-12
'Ubuntu 22.04 LTS with CLang 12 (Release, x86_64, Iceoryx)':
cc: clang-13
cxx: clang++-13
'Ubuntu 22.04 LTS with CLang 13 (Release, x86_64, Iceoryx)':
image: ubuntu-22.04
build_type: Release
iceoryx: on
sanitizer: address,undefined
cc: clang-12
cxx: clang++-12
cc: clang-13
cxx: clang++-13
# C++11 requires boost, installing boost on Windows takes forever, so use Linux
# Google test requires C++14 at minimum, so we can't build tests ...
'Ubuntu 22.04 LTS with CLang 12 (Debug, x86_64, C++11)':
'Ubuntu 22.04 LTS with CLang 13 (Debug, x86_64, C++11)':
image: ubuntu-22.04
build_type: Debug
cc: clang-12
cxx: clang++-12
cc: clang-13
cxx: clang++-13
legacy: on
'Ubuntu 22.04 LTS with GCC 12 (Debug, x86_64, no type lib)':
image: ubuntu-22.04
Expand Down

0 comments on commit 4b53f4d

Please sign in to comment.