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

This commit is contained in:
Achim D. Brucker 2019-01-21 17:37:23 +00:00
부모 1a88f7c6c3
커밋 eacb55c43f
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/:/WORKING logicalhacking:isabelle2018 isabelle build -D /WORKING'
}
}
}
}