IBConverter/Jenkinsfile

17 lines
286 B
Plaintext
Raw Normal View History

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