zuul: remove the clang-tidy job

Turns out we don't see the warnings, but the warnings right now are
plain ridiculous and unhelpful so we can just as well just kill this
job.

Closes #9390
This commit is contained in:
Daniel Stenberg 2022-08-30 13:24:28 +02:00
parent cafb356e19
commit e43c3b3e3e
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 0 additions and 25 deletions

View File

@ -83,12 +83,6 @@ if [ "$T" = "normal" ]; then
fi
fi
if [ "$T" = "tidy" ]; then
./configure --enable-warnings --enable-werror $C
make
make tidy
fi
if [ "$T" = "cmake" ]; then
mkdir -p build
cd ./build

View File

@ -201,24 +201,6 @@
CXX: clang++-9
T: fuzzer
- job:
name: curl-tidy
parent: curl-base
vars:
curl_apt_packages:
- clang
- clang-tidy
- clang-9
- clang-tidy-9
- libpsl-dev
- libbrotli-dev
- libzstd-dev
curl_env:
CC: clang-9
CXX: clang++-9
T: tidy
C: --with-openssl
- job:
name: curl-debug-clang-with-openssl-dl-ubsan
parent: curl-base
@ -258,6 +240,5 @@
- curl-cmake-boringssl-quiche
- curl-cmake-ngtcp2
- curl-fuzzer
- curl-tidy
- curl-debug-clang-with-openssl-dl-ubsan
...