IBConverter/Jenkinsfile

17 lines
323 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 {
2022-05-14 21:38:11 +00:00
withDockerContainer(image: 'rust:latest', toolName: 'Docker') {
2022-05-14 21:36:39 +00:00
sh 'cargo build --release'
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
}
}
2022-05-14 06:37:43 +00:00
}