Package hudson.model

Examples of hudson.model.Result.combine()


        for (MatrixConfiguration c : touchStoneConfigurations) {
            if(runSequentially)
                scheduleConfigurationBuild(build, listener, c);
            MatrixRun run = waitForCompletion(build, listener, c);
            notifyEndBuild(run,aggregators);
            r = r.combine(getResult(run));
        }
       
        if (touchStoneResultCondition != null && r.isWorseThan(touchStoneResultCondition)) {
            logger.printf("Touchstone configurations resulted in %s, so aborting...%n", r);
            return r;
View Full Code Here


            if(p.isRunSequentially())
                scheduleConfigurationBuild(build, listener, c);
            MatrixRun run = waitForCompletion(build, listener, c);
            notifyEndBuild(run,aggregators);
            logger.println(Messages.MatrixBuild_Completed(ModelHyperlinkNote.encodeTo(c), getResult(run)));
            r = r.combine(getResult(run));
        }

        return r;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.