This repository has been archived on 2020-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
Core_DOM-dev/.ci/Jenkinsfile

11 lines
230 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker run -v $PWD/Core_DOM:/Core_DOM logicalhacking:isabelle2018 isabelle build -D /Core_DOM'
}
}
}
}