This commit is contained in:
Natalia Szymczyk 2023-04-20 23:19:33 +02:00
parent b190c8fbc2
commit ce08a2b277
2 changed files with 29 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -21,7 +21,7 @@ pipeline {
sh './script.sh'
}
}
stage('ArchiveArtifacts!') {
stage('ArchiveArtifacts') {
steps {
archiveArtifacts 'liver.data.train'
archiveArtifacts 'liver.data.test'

28
Jenkinsfile2 Normal file
View File

@ -0,0 +1,28 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('CopyArtifacts'){
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s487186-create-dataset', selector: lastSuccessful()
}
}
stage('Script') {
steps {
sh 'echo test'
}
}
// stage('ArchiveArtifacts') {
// steps {
// archiveArtifacts 'liver.data.train'
// archiveArtifacts 'liver.data.test'
// archiveArtifacts 'liver.data.dev'
// }
// }
}
}