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

This commit is contained in:
Achim D. Brucker 2019-01-21 17:37:23 +00:00
rodič 1a88f7c6c3
revize eacb55c43f
1 změnil soubory, kde provedl 10 přidání a 0 odebrání

10
.ci/Jenkinsfile vendorováno Normal file
Zobrazit soubor

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