Added Jenkins CI configuration.
adbrucker/isabelle-hacks/master This commit looks good 詳細

このコミットが含まれているのは:
Achim D. Brucker 2019-01-21 17:37:23 +00:00
コミット eacb55c43f
1個のファイルの変更10行の追加0行の削除

10
.ci/Jenkinsfile vendored ノーマルファイル
ファイルの表示

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker run -v $PWD/:/WORKING logicalhacking:isabelle2018 isabelle build -D /WORKING'
}
}
}
}