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

这个提交包含在:
Achim D. Brucker 2019-01-21 17:37:23 +00:00
父节点 1a88f7c6c3
当前提交 eacb55c43f
共有 1 个文件被更改,包括 10 次插入0 次删除

10
.ci/Jenkinsfile vendored 普通文件
查看文件

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