lh-docker-isabelle/.ci/Jenkinsfile

17 lines
383 B
Plaintext
Raw Normal View History

2019-01-04 18:41:12 +00:00
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'
2019-06-18 06:39:43 +00:00
echo 'Building Isabelle 2019'
sh './build.sh 2019 Functional-Automata'
2019-01-04 18:41:12 +00:00
}
}
}
}