1
0
mirror of https://github.com/plexusorg/IBConverter.git synced 2025-04-25 16:19:39 +00:00
2022-05-14 16:28:39 -05:00

17 lines
306 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
withDockerContainer('rust:latest') {
steps {
sh 'cargo build --release'
}
}
post {
always {
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
}
}
}
}
}