2019-05-13 18:24:15 +00:00
|
|
|
pipeline {
|
|
|
|
|
stages {
|
|
|
|
|
stage('build') {
|
2019-05-13 19:43:57 +00:00
|
|
|
agent { docker { image 'rust' } }
|
2019-05-13 18:24:15 +00:00
|
|
|
steps {
|
2019-05-13 19:41:15 +00:00
|
|
|
reuseNode true
|
2019-05-13 18:24:15 +00:00
|
|
|
sh 'cargo build'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-13 18:29:12 +00:00
|
|
|
|
|
|
|
|
post {
|
|
|
|
|
success {
|
|
|
|
|
archiveArtifacts artifacts: 'target/debug/telegram-leetbot', fingerprint: true
|
2019-05-13 19:37:46 +00:00
|
|
|
|
2019-05-13 19:43:57 +00:00
|
|
|
echo 'Starting docker image build'
|
2019-05-13 19:44:58 +00:00
|
|
|
script {
|
|
|
|
|
docker.build("northcode/telegram-leetbot")
|
|
|
|
|
}
|
2019-05-13 18:29:12 +00:00
|
|
|
}
|
|
|
|
|
}
|
2019-05-13 18:24:15 +00:00
|
|
|
}
|