Update 'Multibranch-Evaluation'
This commit is contained in:
parent
7750e65844
commit
3a6b4b66cb
@ -19,7 +19,31 @@ pipeline {
|
|||||||
sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686'
|
sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('copy_artifacts') {
|
||||||
|
steps {
|
||||||
|
copyArtifacts(projectName: 'z-s434686-training/master', fingerprintArtifacts: true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('copy_artifacts_from_inside') {
|
||||||
|
steps {
|
||||||
|
copyArtifacts(projectName: 'z-s434686-evaluation/master', fingerprintArtifacts: true, optional: true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Docker') {
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
filename 'Dockerfile'
|
||||||
|
dir 'ium_z434686'
|
||||||
|
reuseNode true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'ls -a'
|
||||||
|
sh 'python ./ium_z434686/predict.py'
|
||||||
|
archiveArtifacts 'prediction.csv'
|
||||||
|
archiveArtifacts 'metrics.csv'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
stage('clear_after') {
|
stage('clear_after') {
|
||||||
|
Loading…
Reference in New Issue
Block a user