Trying to analyse Sonarqube from Drone io in Github PRs

0 votes

I have been trying to run Sonar scans at Github's Pull Requests from Drone.io.

The sequence is mentioned below:

  • PR is made
  • Drone.io build is triggered
  • Gradle task is executed
  • Gradle's Sonar plugin with Drone's environment is run

This is the command used in Drone's build:

gradle/wrapper all sonarqube \
 -Dsonar.analysis.mode=preview \
 -Dsonar.github.pullRequest=$DRONE_BUILD_NUMBER \
 -Dsonar.github.oauth=<github_token>

I cannot find the PR ID in the Drone environment.

Can you resolve this query ?

Thanks.

Jun 27, 2018 in Git & GitHub by Atul
• 10,240 points
931 views

1 answer to this question.

0 votes

Just try the below steps.The DRONE_PULL_REQUEST environment variable has the pull request number.

You can see a list of all environment variables by dumping them to your build logs. This can be done by adding the env command to your yaml:

pipeline:
  build:
    image: golang
    commands:
      - env # dump environment variables

You will see something like this in your build logs:

...
DRONE_PULL_REQUEST=42
DRONE_BUILD_EVENT=pull_request
...

Note that the pull request is only set when Drone is building a pull request hook. You can confirm this by looking at the build event environment variable.

I hope the above explanation will be helpful to you.

answered Jun 27, 2018 by shubham
• 7,340 points

Related Questions In Git & GitHub

0 votes
1 answer

How to perform a sonarqube analysis from drone.io in github?

DRONE_PULL_REQUEST  env variable holds the pull request ...READ MORE

answered Jul 6, 2018 in Git & GitHub by DareDev
• 6,890 points
2,301 views
0 votes
1 answer

How to share images in GitHub from local system?

Hi@akhtar, You can follow the below steps to ...READ MORE

answered May 7, 2020 in Git & GitHub by MD
• 95,440 points
1,184 views
0 votes
1 answer

How to create branch in GitHub from my local Git repo?

Hi@akhtar, To sync your existing branch in GitHub, ...READ MORE

answered May 7, 2020 in Git & GitHub by MD
• 95,440 points
622 views
+1 vote
0 answers

Give full access permission to another user in GitHub

How do I give full access permission ...READ MORE

May 15, 2019 in Git & GitHub by Umer
26,238 views
+15 votes
2 answers

Git management technique when there are multiple customers and need multiple customization?

Consider this - In 'extended' Git-Flow, (Git-Multi-Flow, ...READ MORE

answered Mar 27, 2018 in DevOps & Agile by DragonLord999
• 8,450 points
3,439 views
+2 votes
1 answer
–1 vote
1 answer

Having problem in Github and remote Git repo with production and development code

I think you could start with this. The ...READ MORE

answered Apr 10, 2018 in Git & GitHub by shubham
• 7,340 points

edited Dec 15, 2023 by Khan Sarfaraz 733 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP