summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-08-30 13:24:28 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-08-30 15:40:03 +0200
commite43c3b3e3e6c2d58084d8c98f8e9640e09c0a05e (patch)
treefc521b426c4b1e1611139bb77ef1c91c5615d20a
parentcafb356e19cda2272f4238b9258bf1e40435c468 (diff)
downloadcurl-e43c3b3e3e6c2d58084d8c98f8e9640e09c0a05e.tar.gz
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
-rwxr-xr-xscripts/zuul/script.sh6
-rw-r--r--zuul.d/jobs.yaml19
2 files changed, 0 insertions, 25 deletions
diff --git a/scripts/zuul/script.sh b/scripts/zuul/script.sh
index 8a800232e..ebfd0b065 100755
--- a/scripts/zuul/script.sh
+++ b/scripts/zuul/script.sh
@@ -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
diff --git a/zuul.d/jobs.yaml b/zuul.d/jobs.yaml
index 4c2f7e50b..ec2ea9447 100644
--- a/zuul.d/jobs.yaml
+++ b/zuul.d/jobs.yaml
@@ -202,24 +202,6 @@
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
vars:
@@ -258,6 +240,5 @@
- curl-cmake-boringssl-quiche
- curl-cmake-ngtcp2
- curl-fuzzer
- - curl-tidy
- curl-debug-clang-with-openssl-dl-ubsan
...