SAML users unable to get Sonarqube reports notification

Hi Team,

We have configured the SAML to connect the Sonarqube, now we are trying to implement the sonarqube projects reports get through email notification on 8.9 LTS, we have configured the SMTP on sonarqube side, once configure that, user login through SAML after enable the notification but user not able to get the notification.
How to get the SAML user sonarqube reports?

Hi,

What’s your PDF Reports Frequency (Project Settings → Governance → PDF Reports Frequency) set to?

 
Ann

Hi,

I am using developer edition and version 8.9 LTS, I can not find the Project Settings → Governance → PDF Reports Frequency

Hi,

Thanks for providing your SonarQube version. Project-level reporting isn’t available in the LTS. You would need to upgrade to the latest version of Enterprise Edition to get it.

 
HTH,
Ann

Hi,

Thanks for providing, how can I add credentials on sonarqube pipeline for checking the sonarqube quality gate status
pipeline {
agent any
stages {
stage(‘Build’) {
steps {
sh ‘mvn clean package’
}
}
stage(‘Sonar Scan’) {
steps {
withSonarQubeEnv(installationName: ‘sonarqube’){
sh ‘mvn clean package sonar:sonar’
}
}
}
stage(‘Quality Gate’) {
steps {
timeout(time: 5, unit: ‘MINUTES’) {
waitForQualityGate abortPipeline: true
}
}
}
}
}
But gate failed please help me

Hi,

This is an entirely new topic. Please create a new thread.

 
Ann