isabelle-hacks/.ci/Jenkinsfile

11 lines
220 B
Plaintext
Raw Normal View History

2019-01-21 17:37:23 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2019-06-22 23:15:50 +00:00
sh 'docker run -v $PWD/:/WORKING logicalhacking:isabelle2019 isabelle build -D /WORKING'
2019-01-21 17:37:23 +00:00
}
}
}
}