From: Oto Šťáva Date: Tue, 14 May 2024 09:35:18 +0000 (+0200) Subject: .gitlab-ci: remove SonarCloud Scanner X-Git-Tag: v5.7.3~4 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fenvironments%2Fdocs-develop-mast-tzgd0f%2Fdeployments%2F4071;p=thirdparty%2Fknot-resolver.git .gitlab-ci: remove SonarCloud Scanner The detections are mostly academic and useless for our purposes. We have other static analyzers that better suit our needs. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a29a63d5..1c3eb4271 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -215,25 +215,6 @@ docker: after_script: # remove dangling images to avoid running out of disk space - docker rmi ${DOCKER_IMAGE_NAME} - docker rmi $(docker images -f "dangling=true" -q) - -sonarcloud: - <<: *nodep - stage: build - except: null - only: - - tags - - master@knot/knot-resolver - script: - - meson build_sonarcloud --prefix=$PREFIX -Dmalloc=disabled - - build-wrapper-linux-x86-64 --out-dir bw-output ninja -C build_sonarcloud - - > - sonar-scanner - -Dsonar.organization=cz-nic - -Dsonar.projectKey=CZ-NIC_knot-resolver - -Dsonar.sources=. - -Dsonar.cfamily.build-wrapper-output=bw-output - -Dsonar.host.url=https://sonarcloud.io - -Dsonar.projectVersion="$(git describe)" # }}} # sanity {{{