Zaktualizuj 'Jenkinsfile_train'

This commit is contained in:
Kornelia Girejko 2022-05-06 22:53:03 +02:00
parent 7351fe7c1a
commit 779d6278e8

View File

@ -27,12 +27,13 @@ pipeline {
} }
stages { stages {
stage('First'){ stage('Main train'){
steps { steps {
copyArtifacts filter: '*', projectName: 's478815-create-dataset' copyArtifacts filter: '*', projectName: 's478815-create-dataset'
sh 'python3 ./DL.py $EPOCHS' sh 'python3 ./DL.py $EPOCHS'
archiveArtifacts artifacts: 'modelP.pkl', followSymlinks: false archiveArtifacts artifacts: 'modelP.pkl', followSymlinks: false
build job: 's478815-evaluation/master/'
} }
} }
} }