Skip to content

Dell Boomi CI/CD : Boomi CLI - Jenkins - Jobs - SonarQube for static code analysis - Docker

Notifications You must be signed in to change notification settings

CHEREF-Mehdi/jenkins-boomi-ci-cd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Boomi CI & CD : Boomi CLI - Jenkins - Jobs - SonarQube - Docker

RESSOURCES

Configuration

  1. Add .env file to the root folder with the same variable names in env-example file

  2. Run Docker Containers:

    docker compose up
    
  3. Wait for :

    • Jenkins container to print INFO Log : "Jenkins is fully up and running".
    • Sonar container to print INFO Log : "SonarQube is up"
  4. Go to http://localhost:${JENKINS_PORT}/ & Log in with ${JENKINS_USER} and ${JENKINS_PASS} values you have configured in the .env file

  5. Install Plugins & Configure basic Jenkins settings

    1. In Dashboard select Manage Jenkins, scroll down to System Configuration, click on Manage Plugins & select Available Tab.

      • search for SonarQube Scanner and install it.
      • search for Sonar Quality Gates and install it.
      • Restart Jenkins after installation.
    2. Go back to Manage Jenkins, scroll down to System Configuration & Click on Configur System & update the following :

      • Maven Project Configuration set the value of "# of executors" to : 10 ( ‼️ You must update this value each time you restart the Jenkins container)
      • In Git plugin add a global Git user config by setting your "user.name" & "user.email"
      • In Shell set the value of "Shell executable" to : /bin/bash
      • Click Apply & Save
    3. Go back to Manage Jenkins, scroll down to Security, Click on Configure Global Security, scroll down to Authorize JSONP or primitive XPath requests by whitelist & check the box "Allow requests without Referer".

  6. Configuring Boomi Account

    • Go to Dashboard & Click on the Account_{Rename} folder:

      1. Click on configure, update the "accountId" in folder propriety & click Apply & save. (To find your Boomi accountId Log in to your Boomi account and go to Settings » Account Information.)

      2. Click on Credentials & update the authToken to the Boomi API Token (Format) [email protected]:bOomi-aPi-ToKen. (How to configure your Boomi API Token? Link1 Link2)

  7. Test Job execution

    1. Go to Dashboard, click on the Account_{Rename} folder & select the Publish Reports Tab.
    2. Select List Atoms & click on Build now
    3. Once the build is compelete refresh the page and select the html report.
  8. GIT Advance Settings (There are four jobs that use a GIT Credentials as "git_id")

    • Go to Dashboard & click on the Account_{Rename} folder :
      1. Select Credentials, under Stores scoped to Account_{Rename} click on the Account_{Rename}, Select Global credentials (unrestricted) folder & click on Add Credentials :

      2. Search for all Jobs that have GIT (there should be 4).

        • On each job click configure :
          • Source Code Management update the Repository URL to point to your GIT repository where the component files will be uploaded.
          • Under Post-build Actions add the Branches to push to remote repositories.
          • click on *Apply & save.
  9. Sonar Advance Settings

    1. Test your sonar container Boomi code quality checks:

      • Open sonar container CLI and test the setup by running this command :

        sonar-scanner \
        -Dsonar.projectKey=BoomiSonar \
        -Dsonar.sources=. \
        -Dsonar.host.url=http://localhost:9000 \
        -Dsonar.login=82e12d4fcdfd583f963e680c63dd85d441c738e8
        
      • You should have a success INFO log at the end of the execution:

        INFO: ------------------------------------------------------------------------
        INFO: EXECUTION SUCCESS
        INFO: ------------------------------------------------------------------------
        
      • Go to http://localhost:{SONAR_PORT} and Login with :

        • login : admin
        • password : admin
    2. Jenkins Settings :

      1. Go to Dashboard & Click on the Account_{Rename} folder:

        1. Click on Credentials & update the sonarToken set the Secret to : 82e12d4fcdfd583f963e680c63dd85d441c738e8
        2. Click on Configure in Folder Properties look for sonarProjectKey propretie and replace it by SONAR_PROJECT_KEY ( ‼️ IMPORTANT do not replace the Value replace the Name)
      2. Go back to Dashboard, select Manage Jenkins, scroll down to System Configuration, click on Global Tool Configuration, Scroll down to SonarQube Scanner & Click on Add SonarQube Scanner button:

        • Name : SonarQube Scanner Boomi Sonar
        • Install from Maven Central : Choose 4.2.0.1873
        • Click apply & save
      3. Go back to Dashboard, select Manage Jenkins, scroll to System Configuration and click on Configure System :

        • Scroll down to SonarQube servers & Click on Add SonarQube button:

        • Scroll down to Quality Gates - Sonarqube & Click on Add Sonar instance button:

          • Name : Boomi Sonar
          • SonarQube Server URL : http://sonar:9000/
          • SonarQube account token : 82e12d4fcdfd583f963e680c63dd85d441c738e8
          • Click apply & save
  10. You're done! ☺️

Releases

No releases published

Packages

No packages published