From 8870fe11bd4f7898df038165799c9f706fbd65e1 Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Mon, 15 Jan 2024 23:39:47 +0000 Subject: [PATCH] Disable sonar --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e01ea829..565a6a13 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,15 +72,15 @@ jobs: command: python3 -m build working_directory: /home/mythril - - run: - name: Sonar analysis - command: if [ -z "$CIRCLE_PR_NUMBER" ]; then if [ -z "$CIRCLE_TAG" ]; then - sonar-scanner -Dsonar.projectKey=$SONAR_PROJECT_KEY - -Dsonar.organization=$SONAR_ORGANIZATION - -Dsonar.branch.name=$CIRCLE_BRANCH - -Dsonar.projectBaseDir=/home/mythril -Dsonar.sources=mythril - -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.tests=/home/mythril/tests - -Dsonar.login=$SONAR_LOGIN; fi; fi + #- run: + # name: Sonar analysis + # command: if [ -z "$CIRCLE_PR_NUMBER" ]; then if [ -z "$CIRCLE_TAG" ]; then + # sonar-scanner -Dsonar.projectKey=$SONAR_PROJECT_KEY + # -Dsonar.organization=$SONAR_ORGANIZATION + # -Dsonar.branch.name=$CIRCLE_BRANCH + # -Dsonar.projectBaseDir=/home/mythril -Dsonar.sources=mythril + # -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.tests=/home/mythril/tests + # -Dsonar.login=$SONAR_LOGIN; fi; fi # - run: # name: Integration tests # command: if [ -z "$CIRCLE_PR_NUMBER" ]; then ./run-integration-tests.sh; fi