Package com.groupon.jenkins.util

Examples of com.groupon.jenkins.util.GroovyYamlTemplateProcessor


    @Override
    public Result runBuild(DynamicBuild build, BuildExecutionContext buildExecutionContext, Launcher launcher, BuildListener listener) throws IOException, InterruptedException {
        try{
            EnvVars buildEnvironment = build.getEnvironment(listener);
            Map config = new GroovyYamlTemplateProcessor(getDotCiYml(build), buildEnvironment).getConfig();
            this.buildConfiguration = getBuildConfiguration(config,build.getBuildId(),buildEnvironment);
            build.setAxisList(buildConfiguration.getAxisList());
            Result result ;
            if(buildConfiguration.isParallized()){
                result = runMultiConfigbuildRunner(build, buildConfiguration, listener, launcher);
View Full Code Here


    private NotificationsSection notificationsSection;
    private PluginsSection pluginsSection;
    private ParentTemplateSection parentTemplateSection;

    public BuildConfiguration(String ymlDefintion, EnvVars envVars) {
        this( new MapValue<String,Object> (new GroovyYamlTemplateProcessor(ymlDefintion, envVars).getConfig()));
    }
View Full Code Here

TOP

Related Classes of com.groupon.jenkins.util.GroovyYamlTemplateProcessor

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.