1
0
mirror of https://github.com/pierre42100/ComunicWeb synced 2025-03-31 15:12:38 +00:00
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'
}
}
}
}