jenkins2
This commit is contained in:
parent
b190c8fbc2
commit
ce08a2b277
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -21,7 +21,7 @@ pipeline {
|
|||||||
sh './script.sh'
|
sh './script.sh'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('ArchiveArtifacts!') {
|
stage('ArchiveArtifacts') {
|
||||||
steps {
|
steps {
|
||||||
archiveArtifacts 'liver.data.train'
|
archiveArtifacts 'liver.data.train'
|
||||||
archiveArtifacts 'liver.data.test'
|
archiveArtifacts 'liver.data.test'
|
||||||
|
28
Jenkinsfile2
Normal file
28
Jenkinsfile2
Normal 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'
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user