script count lines
This commit is contained in:
parent
7919c3350b
commit
5714683ce0
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -13,9 +13,22 @@ pipeline {
|
|||||||
step ([$class: 'CopyArtifact',
|
step ([$class: 'CopyArtifact',
|
||||||
projectName: 'ASR-eval',
|
projectName: 'ASR-eval',
|
||||||
filter: "wikiniews_results.tsv",
|
filter: "wikiniews_results.tsv",
|
||||||
target: 'wikiniews_results.tsv ']);
|
target: 'wikiniews_results.tsv']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('checkout: Check out from version control') {
|
||||||
|
steps {
|
||||||
|
git branch: 'master',
|
||||||
|
url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops.git'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Count lines'){
|
||||||
|
steps {
|
||||||
|
sh('chmod +x ./numberOfLines.sh')
|
||||||
|
sh('./numberOfLines.sh')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
1
countLines.sh
Normal file
1
countLines.sh
Normal file
@ -0,0 +1 @@
|
|||||||
|
wc -l wikiniews_results.tsv > numberOfLines.txt
|
Loading…
Reference in New Issue
Block a user