Add Jenkinsfile

This commit is contained in:
2022-05-14 01:37:43 -05:00
parent 59d621432c
commit 0243621cd3
3 changed files with 27 additions and 10 deletions

17
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,17 @@
pipeline {
agent {
docker { image 'rust:latest' }
}
stages {
stage('Build') {
steps {
sh 'cargo build --release'
}
post {
always {
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
}
}
}
}
}