This commit is contained in:
Telesphoreo 2022-05-14 16:28:39 -05:00
parent 0243621cd3
commit a5b3fa56f1
No known key found for this signature in database
GPG Key ID: 5ACFFC4682CF849B
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -1,11 +1,11 @@
pipeline { pipeline {
agent { agent any
docker { image 'rust:latest' }
}
stages { stages {
stage('Build') { stage('Build') {
steps { withDockerContainer('rust:latest') {
sh 'cargo build --release' steps {
sh 'cargo build --release'
}
} }
post { post {
always { always {