Initial commit.

This commit is contained in:
Achim D. Brucker 2019-01-05 17:50:30 +00:00
parent 66ca317b28
commit 6587217c99
1 changed files with 10 additions and 0 deletions

10
.ci/Jenkinsfile vendored Normal file
View File

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