Dataset stats

This commit is contained in:
Paweł Skórzewski 2024-03-20 14:58:27 +01:00
parent ee328f82d7
commit 6f6602042e
4 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -160,3 +160,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
*.csv

18
dataset-stats.Jenkinsfile Normal file
View File

@ -0,0 +1,18 @@
pipeline {
agent any
stages {
stage('Copy artifacts') {
steps {
copyArtifacts filter: 'data.csv',
fingerprintArtifacts: true, projectName: 'z-s301654-create-dataset',
selector: lastSuccessful()
}
}
stage('Calculate stats') {
steps {
sh "dataset-stats.sh"
}
}
}
}

3
dataset-stats.sh Executable file
View File

@ -0,0 +1,3 @@
#! /bin/bash
wc -l data.csv