a4ef4af182
Some checks failed
s444354-evaluation/pipeline/head There was a failure building this commit
23 lines
606 B
Plaintext
23 lines
606 B
Plaintext
pipeline {
|
|
agent {
|
|
docker { image 's444354_create_dataset_image:latest' }
|
|
}
|
|
stages {
|
|
stage('Get arifacts') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's44354-create-dataset', selector: lastSuccessful()
|
|
}
|
|
}
|
|
stage('Show stats') {
|
|
steps {
|
|
sh "python3 ./data_processing.py"
|
|
sh "python3 ./pytorch/pytorch.py"
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
success {
|
|
archiveArtifacts artifacts: 'result.txt', followSymlinks: false
|
|
}
|
|
}
|
|
} |