Jenkins with Gradle

You can integrate an existing Gradle and Perfecto project with Jenkins. For a Perfecto Gradle sample project, see https://github.com/PerfectoMobileSA/Perfecto_Gradle.

Important: This document includes references to a third-party product, Jenkins. The user interface and usage of third-party products are subject to change without notice. For the latest published information about Jenkins, see https://www.jenkins.io/doc/.

To integrate an existing Gradle and Perfecto project with Jenkins:

  1. Create a new Jenkins job.

  2. Add the source code management information for the Git repository location of the project.

  3. Add parameters, as follows:
    1. Select the This project is parameterized checkbox. 

    2. Add the following parameters and set their corresponding default values:
      • securityToken. For information on retrieving the security token for your user, see Generate security tokens.
      • cloudName. For example: mobilecloud
  4. Add a build step called Invoke Gradle script
  5. From the Gradle Version list, select the relevant version.
  6. In the Tasks field, add the following tasks:

    Copy
    clean
    build
    test
    -PcloudName=${cloudName}
    -PsecurityToken=${securityToken}
    -PjobName=${JOB_NAME}
    -PjobNumber=${BUILD_NUMBER}
  7. Run the job and get the Gradle output in the console logs.