1
0
mirror of https://github.com/plexusorg/IBConverter.git synced 2025-04-25 08:09:39 +00:00

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

30
Jenkinsfile vendored

@ -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
}
}
}