IBConverter/Jenkinsfile

17 lines
284 B
Plaintext
Raw Normal View History

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