Initial commit.

This commit is contained in:
Achim D. Brucker 2019-01-05 17:45:30 +00:00
父節點 270d675500
當前提交 0e44f9d23d
共有 1 個文件被更改,包括 10 次插入0 次删除

10
.ci/Jenkinsfile vendored Normal file
查看文件

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