Package com.offbytwo.jenkins

Examples of com.offbytwo.jenkins.JenkinsServer


    List<Integer> buildWithTestResults = new ArrayList<Integer>();
    Map<String, int[]> failureStats = new HashMap<String, int[]>();

    try {
      JenkinsServer jenkins = new JenkinsServer(this.client);
      Map<String, Job> jobs = jenkins.getJobs();
      JobWithDetails job = jobs.get(jobName.toLowerCase()).details();

      // build test case failures stats for the past 10 builds
      Build lastBuild = job.getLastBuild();
      int startingBuildNumber =
View Full Code Here

TOP

Related Classes of com.offbytwo.jenkins.JenkinsServer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.