ComunicWeb/Jenkinsfile
2018-05-02 16:49:51 +02:00

12 lines
213 B
Groovy

pipeline {
agent { docker { image "registry.docker.internal/pierre42100/docker-comunicwebappscratch" } }
stages {
stage("build") {
steps {
sh 'php --version'
sh './builder build offline'
}
}
}
}