Added Jenkins CI configuration.
adbrucker/isabelle-hacks/master This commit looks good Detalles

Este commit está contenido en:
Achim D. Brucker 2019-01-21 17:37:23 +00:00
padre 1a88f7c6c3
commit eacb55c43f
Se han modificado 1 ficheros con 10 adiciones y 0 borrados

10
.ci/Jenkinsfile vendido Archivo normal
Ver fichero

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker run -v $PWD/:/WORKING logicalhacking:isabelle2018 isabelle build -D /WORKING'
}
}
}
}