1
0
mirror of https://github.com/plexusorg/IBConverter.git synced 2025-04-18 05:23:01 +00:00
2022-05-14 01:37:43 -05:00

17 lines
286 B
Groovy

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