UPF/.ci/Jenkinsfile

11 lines
215 B
Plaintext
Raw Normal View History

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