Update Jenkinsfile

This commit is contained in:
Telesphoreo 2022-05-14 16:36:39 -05:00
parent 1e315f0303
commit 7709a19762
No known key found for this signature in database
GPG key ID: 5ACFFC4682CF849B

6
Jenkinsfile vendored
View file

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