mirror of
https://github.com/plexusorg/IBConverter.git
synced 2024-12-22 07:45:07 +00:00
Update Jenkinsfile
This commit is contained in:
parent
1e315f0303
commit
7709a19762
1 changed files with 15 additions and 15 deletions
30
Jenkinsfile
vendored
30
Jenkinsfile
vendored
|
@ -1,17 +1,17 @@
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Build') {
|
||||
withDockerContainer('rust:latest') {
|
||||
steps {
|
||||
sh 'cargo build --release'
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
agent any
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
withDockerContainer('rust:latest') {
|
||||
sh 'cargo build --release'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue