Skip to content

Commit

Permalink
[ci] Try clang 15 for clang-sanitisers job
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Mar 14, 2024
1 parent 578522b commit a36ada7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install \
clang-15 \
gettext \
libwxgtk3.0-gtk3-dev \
libavcodec-dev \
Expand All @@ -210,8 +211,8 @@ jobs:
run: |
# We use clang here because (at least currently) it supports a few
# extra sanitiser checks compared to GCC.
export CC='ccache clang'
export CXX='ccache clang++'
export CC='ccache clang-15'
export CXX='ccache clang++-15'
# float-divide-by-zero, nullability and unsigned-overflow aren't
# undefined behaviour checks, but they catch for things we don't expect
# our code to do.
Expand Down

0 comments on commit a36ada7

Please sign in to comment.