Some checks failed
Core Repos/ImageApi/pipeline/pr-master There was a failure building this commit
26 lines
390 B
Groovy
26 lines
390 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'rust:1.48'
|
|
args "-v '$PWD':/usr/src/image-api"
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
echo $PWD
|
|
sh 'cargo build --release'
|
|
archiveArtifacts artifacts: '**/target/release/**', fingerprint: true
|
|
}
|
|
}
|
|
|
|
stage('test') {
|
|
steps {
|
|
sh 'cargo test'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|