IBConverter/Jenkinsfile

17 lines
306 B
Plaintext
Raw Normal View History

2022-05-14 01:37:43 -05:00
pipeline {
2022-05-14 16:28:39 -05:00
agent any
2022-05-14 01:37:43 -05:00
stages {
stage('Build') {
2022-05-14 16:28:39 -05:00
withDockerContainer('rust:latest') {
steps {
sh 'cargo build --release'
}
2022-05-14 01:37:43 -05:00
}
post {
always {
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
}
}
}
}
}