Featherweight_OCL/.ci/Jenkinsfile

11 lines
257 B
Plaintext
Raw Normal View History

2019-01-05 17:50:30 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2020-05-23 10:08:37 +00:00
sh 'docker run -v $PWD/Featherweight_OCL:/Featherweight_OCL logicalhacking:isabelle2020 isabelle build -D /Featherweight_OCL'
2019-01-05 17:50:30 +00:00
}
}
}
}