fix artifacts
Some checks failed
s444417-training/pipeline/head There was a failure building this commit

This commit is contained in:
s444417 2022-04-25 21:21:40 +02:00
parent 59b7d21327
commit 78e42d0b3b
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -31,7 +31,7 @@ pipeline {
// sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh" // sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
// sh 'ls -la' // sh 'ls -la'
// sh './startscript1.sh' // sh './startscript1.sh'
archiveArtifacts 'Participants_Data_HPP' archiveArtifacts 'Participants_Data_HPP/**/*.*'
} }
} }
stage ('Starting train job') { stage ('Starting train job') {

View File

@ -5,7 +5,7 @@ pipeline {
stages { stages {
stage('Test') { stage('Test') {
steps { steps {
copyArtifacts filter: 'Participants_Data_HPP' projectName: 's444417-create-dataset' copyArtifacts filter: 'Participants_Data_HPP/**/*.*' projectName: 's444417-create-dataset'
} }
} }
} }