UPF/.ci/Jenkinsfile

11 righe
215 B
Groovy

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