test Jenkins with Blue Ocean

This commit is contained in:
Daniel Clough
2020-12-09 11:07:27 -08:00
parent 0e6275c72f
commit e18cfb58a1

16
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,16 @@
pipeline {
agent {
dockerfile {
filename 'contrib/docker/moreBuilder/Dockerfile.ubase'
}
}
stages {
stage('Build') {
steps {
sh 'docker exec -it blackmore blackmore-cli help'
}
}
}
}