dataset-stats

This commit is contained in:
s434766 2021-03-26 17:06:07 +01:00
parent 35e4c282ad
commit 5f2b293296
2 changed files with 28 additions and 0 deletions

24
copyArtiJenkins/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,24 @@
pipeline {
agent any
stages {
stage('checkout') {
steps {
git 'https://git.wmi.amu.edu.pl/s434766/ium_434766.git'
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset', selector: lastSuccessful()
}
}
stage('sh: Shell Script') {
steps {
sh 'chmod +x script2.sh'
sh './script2.sh'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'stats.txt'
}
}
}
}

View File

@ -0,0 +1,4 @@
wc -l healthcare-dataset-stroke-data.csv >> stats.txt
wc -l scriptTest.csv >> stats.txt
wc -l scriptDev.csv >> stats.txt
wc -l scriptTrain.csv >> stats.txt