DOM_Components/.ci/Jenkinsfile

11 lines
236 B
Plaintext
Raw Normal View History

2020-12-19 11:10:14 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2020-12-19 20:45:44 +00:00
sh 'docker run -v $PWD/Core_DOM:/Core_DOM logicalhacking:isabelle2020 isabelle build -D /DOM_Components'
2020-12-19 11:10:14 +00:00
}
}
}
}