Initial commit.

This commit is contained in:
Achim D. Brucker 2019-01-04 18:41:12 +00:00
parent b64cf8a7be
commit 8d1176d523
1 changed files with 14 additions and 0 deletions

14
.ci/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building Isabelle 2017'
sh './build.sh 2017 Functional-Automata'
echo 'Building Isabelle 2018'
sh './build.sh 2018 Functional-Automata'
}
}
}
}