mirror of
https://github.com/plexusorg/IBConverter.git
synced 2024-11-14 16:33:34 +00:00
17 lines
286 B
Plaintext
17 lines
286 B
Plaintext
|
pipeline {
|
||
|
agent {
|
||
|
docker { image 'rust:latest' }
|
||
|
}
|
||
|
stages {
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
sh 'cargo build --release'
|
||
|
}
|
||
|
post {
|
||
|
always {
|
||
|
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|