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
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -2,16 +2,16 @@ pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
withDockerContainer('rust:latest') {
|
|
||||||
steps {
|
steps {
|
||||||
|
withDockerContainer('rust:latest') {
|
||||||
sh 'cargo build --release'
|
sh 'cargo build --release'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
|
archiveArtifacts artifacts: 'target/release/*.exe', followSymlinks: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue