19 lines
525 B
Plaintext
19 lines
525 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
parameters{
|
||
|
buildSelector(
|
||
|
defaultSelector: lastSuccessful(),
|
||
|
name: 'BUILD_SELECTOR',
|
||
|
description: 'Which build to use for copying artifacts'
|
||
|
)
|
||
|
}
|
||
|
stages {
|
||
|
stage("Script") {
|
||
|
steps {
|
||
|
copyArtifacts fingerprintArtifacts: true, projectName: 's444018-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||
|
sh " ./stats.sh"
|
||
|
archiveArtifacts 'lines.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|