Initial commit.

This commit is contained in:
Achim D. Brucker 2020-12-19 15:20:25 +00:00
부모 63fc6cd87c
커밋 623d822881
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/Core_DOM:/Core_DOM logicalhacking:isabelle2020 isabelle build -D /Shadow_SC_DOM'
}
}
}
}