diff options
author | Oto Šťáva <oto.stava@nic.cz> | 2024-05-14 11:35:18 +0200 |
---|---|---|
committer | Oto Šťáva <oto.stava@nic.cz> | 2024-05-14 11:35:18 +0200 |
commit | 1080b61e4e73014382902c8d9bb321cb6af3a361 (patch) | |
tree | 3b1415c7367c51fec4f906b22ea7f9770ce3a8d6 /.gitlab-ci.yml | |
parent | Merge branch 'ci-overhaul-2' into 'master' (diff) | |
download | knot-resolver-1080b61e4e73014382902c8d9bb321cb6af3a361.tar.xz knot-resolver-1080b61e4e73014382902c8d9bb321cb6af3a361.zip |
.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.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a29a63d..1c3eb427 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 {{{ |