Zaktualizuj 'Jenkinsfile_train'

This commit is contained in:
Kornelia Girejko 2022-05-06 19:23:54 +02:00
parent aff6e0827b
commit 01505ce128

View File

@ -2,14 +2,13 @@ pipeline {
agent { agent {
docker { image 'korneliag/ium478815:1.0' } docker { image 'korneliag/ium478815:1.0' }
} }
stages { stages {
stage('Script'){ stage('Script'){
steps { steps {
copyArtifacts filter: '*', projectName: 's478815-create-dataset' copyArtifacts filter: '*', projectName: 's478815-create-dataset'
sh 'python3 ./biblioteka_DL.py' sh 'python3 ./biblioteka_DL.py'
archiveArtifacts artifacts: 'output.txt', followSymlinks: false archiveArtifacts artifacts: 'model.pkl', followSymlinks: false
} }
} }