script count lines
This commit is contained in:
parent
7919c3350b
commit
5714683ce0
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
@ -17,5 +17,18 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
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