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
1 changed files with 15 additions and 15 deletions

30
Jenkinsfile vendored
View File

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