diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile new file mode 100644 index 0000000..3e5dac3 --- /dev/null +++ b/.ci/Jenkinsfile @@ -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' + } + } + } +}