Files
blackcoin-more/Jenkinsfile
2020-12-26 15:45:01 +01:00

11 lines
258 B
Groovy

pipeline {
agent { label 'master' }
stages {
stage('build') {
steps {
sh "contrib/docker/build.sh -o aarch64-linux-gnu blackcoinnl github CoinBlack" + env.GIT_LOCAL_BRANCH + "Etc/UTC"
}
}
}
}