Examples of DockerBuildAction


Examples of com.nirima.jenkins.plugins.docker.action.DockerBuildAction

    }

    @Override
    public FilePath getWorkspace(Job job) {

        DockerBuildAction a = (DockerBuildAction) job.getLastBuild().getAction(DockerBuildAction.class);

        if (a!= null) {
            if (! Strings.isNullOrEmpty(a.remoteFsMapping)) {
                File mappedRemoteWorkspace = new File(a.remoteFsMapping);
                mappedRemoteWorkspace = new File(mappedRemoteWorkspace, "workspace");
View Full Code Here

Examples of com.nirima.jenkins.plugins.docker.action.DockerBuildAction

     * Add a built on docker action.
     * @param tag_image
     * @throws IOException
     */
    private void addJenkinsAction(String tag_image) throws IOException {
        theRun.addAction( new DockerBuildAction(getCloud().serverUrl, containerId, tag_image, dockerTemplate.remoteFsMapping) );
        theRun.save();
    }
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.