add task2

This commit is contained in:
michalzareba 2021-03-28 21:25:06 +02:00
parent 31492ed478
commit cec04a1740
2 changed files with 17 additions and 0 deletions

16
Jenkinsfile_Stats Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
parameters {
buildSelector(defaultSelector: lastSuccessful(), description: 'Which build to use for copying artifacts', name: 'BUILD_SELECTOR')
}
stages {
stage("Clone repo & print stats"){
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's430705-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh "chmod 777 ./return_files_lines.sh"
sh "./return_files_lines.sh"
archiveArtifacts "stats.txt"
}
}
}
}

1
return_files_lines.sh Normal file
View File

@ -0,0 +1 @@
wc -l ./*.csv > ./stats.txt