Files
blackcoin-more/Jenkinsfile
danielclough f83cf7979a fix typo
2020-12-26 15:46:47 +01:00

11 lines
260 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"
}
}
}
}