Files
blackcoin-more/Jenkinsfile
2020-12-30 08:20:38 +01:00

12 lines
324 B
Groovy

pipeline {
agent { label 'master' }
stages {
stage('build') {
when { changeset pattern: "src/*", caseSensitive: true }
steps {
sh "contrib/docker/build.sh -o x86_64-linux-gnu blackcoinnl github CoinBlack" + env.GIT_LOCAL_BRANCH + " Etc/UTC"
}
}
}
}