SC_DOM_Components/.ci/Jenkinsfile

11 lines
239 B
Plaintext
Raw Permalink Normal View History

2020-12-19 15:01:24 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker run -v $PWD/Core_DOM:/Core_DOM logicalhacking:isabelle2020 isabelle build -D /SC_DOM_Components'
}
}
}
}