Dataset stats
This commit is contained in:
parent
ee328f82d7
commit
6f6602042e
1
.gitignore
vendored
1
.gitignore
vendored
@ -160,3 +160,4 @@ cython_debug/
|
|||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
*.csv
|
18
dataset-stats.Jenkinsfile
Normal file
18
dataset-stats.Jenkinsfile
Normal 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
3
dataset-stats.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
wc -l data.csv
|
Loading…
Reference in New Issue
Block a user