leetbot/Jenkinsfile

25 lines
387 B
Plaintext
Raw Normal View History

2019-05-13 18:24:15 +00:00
pipeline {
agent { docker { image 'rust' } }
stages {
stage('build') {
steps {
sh 'cargo build'
}
}
}
post {
success {
archiveArtifacts artifacts: 'target/debug/telegram-leetbot', fingerprint: true
}
}
2019-05-13 18:24:15 +00:00
}
node {
echo 'Starting docker image build'
docker.build("northcode/telegram-leetbot")
}