Merge branch 'add-jenkins' of github.com:CoinBlack/blackcoin-more into add-jenkins

This commit is contained in:
danielclough
2020-12-09 11:13:55 -08:00

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'
}
}
}
}