ComunicWeb/Jenkinsfile

12 lines
213 B
Plaintext
Raw Permalink Normal View History

2018-05-02 14:49:51 +00:00
pipeline {
agent { docker { image "registry.docker.internal/pierre42100/docker-comunicwebappscratch" } }
stages {
stage("build") {
steps {
sh 'php --version'
sh './builder build offline'
}
}
}
}