Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cbi-dev] JIPP docker: command not found

Hi.

I am setting up build jobs for N4JS project using our JIPP: https://ci.eclipse.org/n4js/

We want to use Jenkins Pipeline + Docker, but it seems that docker is not available?

I have small job https://ci.eclipse.org/n4js/job/wip/ with Jenkinsfile (inlined in config):
pipeline {
    agent {
        docker {
            image 'maven:3-alpine'
            args '-v $HOME/.m2:/root/.m2'
        }
    }
    stages {
        stage('Preparation') {
            steps {
                git 'https://github.com/jglick/simple-maven-project-with-tests.git'
            }
        }
        stage('Build') {
             steps {
                    sh "mvn -Dmaven.test.failure.ignore clean package"
             }
        }
        stage('Results') {
             steps {
                junit '**/target/surefire-reports/TEST-*.xml'
                archive 'target/*.jar'
            }
        }
    }
}


running this on JIPP fails :
https://ci.eclipse.org/n4js/job/wip/9/console
Started by user jakub.siberski@xxxxxxxxx
Running in Durability level: MAX_SURVIVABILITY
[Pipeline] node
Running on Jenkins in /home/hudson/genie.n4js/.jenkins/jobs/wip/workspace
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Declarative: Agent Setup)
[Pipeline] sh
[workspace] Running shell script
+ docker pull maven:3-alpine
/home/hudson/genie.n4js/.jenkins/jobs/wip/workspace@tmp/durable-40a6d622/script.sh: line 2: docker: command not found
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 127
Finished: FAILURE


I had impression that docker is available as part of the pipeline workflow
as https://wiki.eclipse.org/Jenkins mentions:
  • docker-commons
  • docker-workflow


So, in short:
Does docker needs to be requested as extra tool,
or am I approaching this the wrong way?


Best,
Jakub


--
Jakub

Back to the top