IBConverter/Jenkinsfile

17 lines
323 B
Plaintext
Raw Normal View History

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