Does SonarQube LTS 7.8 version supported in Azure devops

Must-share information (formatted with Markdown):

  • which versions are you using ( LTS 7.8)
  • what are you trying to achieve ( Integrating SonarQube with AzureDevops
  • what have you tried so far to achieve this

created job in Azure devops but getting certificate issue while connecting to onprem LTS 7.8 version

Hi @RAJEEV_KUMAR ,

Welcome to SonarSource Community :sonarsource: !

SonarQube 7.8 is not supported anymore, please upgrade to SonarQube 8.9.1. Then scan your project again and please attach your logs files so that we can see what issue you are having.

In any case, I believe you encountered this error in the Prepare Analysis step. The Prepare Analysis step that fails with this error is using Node.js. When custom certificates (self-signed, for example) are used, this means it requires passing certificates to the Node process. This is similar to importing certificates into a Java keystore.

You can pass a .pem file containing your certificates to the NODE_EXTRA_CA_CERTS environment variable. The NODE_EXTRA_CA_CERTS environment variable can be set in the Variables tab of an Azure DevOps pipeline (those variables act as environment variables).

Joe