Add Jenkins file

This commit is contained in:
Pierre 2018-05-02 16:49:51 +02:00
parent 998e500154
commit 34e38a505a

11
Jenkinsfile vendored Normal file
View File

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