UPF/.ci/Jenkinsfile

11 lines
215 B
Plaintext
Raw Permalink Normal View History

2019-01-05 17:45:30 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2020-05-23 09:54:07 +00:00
sh 'docker run -v $PWD/UPF:/UPF logicalhacking:isabelle2020 isabelle build -D /UPF'
2019-01-05 17:45:30 +00:00
}
}
}
}