mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
Disable default case checks on clang 18
Recent updates in CI have upgraded clang to clang-18, which gripes when it finds a switch statement without a default case. We should add those cases in, but since we have a lot of those, and CI is currently failing, disable the check until we get them fixed up Fixes #24739 Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24744)
This commit is contained in:
parent
68c7575afc
commit
15974897b7
2
.github/workflows/os-zoo.yml
vendored
2
.github/workflows/os-zoo.yml
vendored
@ -27,7 +27,7 @@ jobs:
|
||||
image: docker.io/library/alpine:${{ matrix.tag }}
|
||||
env:
|
||||
# https://www.openwall.com/lists/musl/2022/02/16/14
|
||||
EXTRA_CFLAGS: ${{ matrix.cc == 'clang' && '-Wno-sign-compare' || '' }}
|
||||
EXTRA_CFLAGS: ${{ matrix.cc == 'clang' && '-Wno-sign-compare -Wno-switch-default' || '' }}
|
||||
CC: ${{ matrix.cc }}
|
||||
steps:
|
||||
- name: install packages
|
||||
|
Loading…
Reference in New Issue
Block a user