Update 'Jenkinsfile'

This commit is contained in:
Wojciech Mikołajski 2023-04-17 20:51:29 +02:00
parent ec1d9920c9
commit 096a7d45dc

3
Jenkinsfile vendored
View File

@ -25,6 +25,9 @@ node {
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'kaggle datasets download -d mssmartypants/water-quality > output.txt'
sh 'unzip -o water-quality.zip >> output.txt'
sh 'mapfile -t lines < waterQuality1.csv'
sh 'shuf -e "${lines[@]}" | head -n 30 > temp.csv'
sh 'mv temp.csv waterQuality1.csv'
sh 'python3 create_dataset.py >> output.txt'
archiveArtifacts artifacts: 'waterQuality.csv, output.txt'
}