IBConverter/Jenkinsfile

17 lines
306 B
Plaintext
Raw Normal View History

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