tweak(ium_03) Update Jenkinsfile
This commit is contained in:
parent
b0a9bd42e2
commit
83b1c4ed1d
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -14,7 +14,14 @@ pipeline{
|
|||||||
}
|
}
|
||||||
stage('sh: Shell Script'){
|
stage('sh: Shell Script'){
|
||||||
steps{
|
steps{
|
||||||
sh ./script.sh
|
sh '''#!/bin/bash
|
||||||
|
curl -OL https://git.wmi.amu.edu.pl/s434780/ium_434780/src/branch/master/resources/Amazon_Consumer_Reviews.csv
|
||||||
|
head -n -1 Amazon_Consumer_Reviews.csv | shuf > Amazon_Consumer_Reviews.csv.shuf
|
||||||
|
wc -l Amazon_Consumer_Reviews.csv
|
||||||
|
head -n 500 Amazon_Consumer_Reviews.csv.shuf > test.csv
|
||||||
|
head -n 500 Amazon_Consumer_Reviews.csv.shuf | tail -n 2006 > dev.csv
|
||||||
|
tail -n +501 Amazon_Consumer_Reviews.csv.shuf > train.csv
|
||||||
|
wc -l *.csv '''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Archive artifacts'){
|
stage('Archive artifacts'){
|
||||||
|
Loading…
Reference in New Issue
Block a user