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

6
Jenkinsfile vendored
View file

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