fix pipeline and add echo to data.sh
This commit is contained in:
parent
50f27e3fd1
commit
468d24acde
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -1,6 +1,8 @@
|
|||||||
pipeline{
|
pipeline{
|
||||||
agent any
|
agent any
|
||||||
properties([parameters([text(defaultValue: '100', description: 'Number of lines to cutoff', name: 'CUTOFF')])])
|
parameters {
|
||||||
|
string(defaultValue: '100', description: 'Number of lines to cutoff', name: 'CUTOFF', trim: false)
|
||||||
|
}
|
||||||
stages{
|
stages{
|
||||||
stage('Stage 1'){
|
stage('Stage 1'){
|
||||||
steps{
|
steps{
|
||||||
@ -15,6 +17,7 @@ pipeline{
|
|||||||
stage('sh: Shell Script'){
|
stage('sh: Shell Script'){
|
||||||
steps{
|
steps{
|
||||||
withEnv(["CUTOFF=${params.CUTOFF}"])
|
withEnv(["CUTOFF=${params.CUTOFF}"])
|
||||||
|
sh "chmod 777 ./script.sh"
|
||||||
./data.sh
|
./data.sh
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3
data.sh
3
data.sh
@ -1,6 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
echo "pobieram dane"
|
||||||
curl -OL https://git.wmi.amu.edu.pl/s434804/ium_434804/raw/branch/master/country_vaccinations.csv
|
curl -OL https://git.wmi.amu.edu.pl/s434804/ium_434804/raw/branch/master/country_vaccinations.csv
|
||||||
|
echo "CUTOFF danych"
|
||||||
head -n -1 country_vaccinations.csv | tail -n +$((${CUTOFF}+1)) > country_vaccinations.csv | shuf > vaccines.csv.shuf
|
head -n -1 country_vaccinations.csv | tail -n +$((${CUTOFF}+1)) > country_vaccinations.csv | shuf > vaccines.csv.shuf
|
||||||
|
echo "Wielkość zbioru"
|
||||||
wc -l vaccines.csv
|
wc -l vaccines.csv
|
||||||
head -n 1468 vaccines.csv.shuf > test.csv
|
head -n 1468 vaccines.csv.shuf > test.csv
|
||||||
head -n 2936 vaccines.csv.shuf | tail -n 1468 > validation.csv
|
head -n 2936 vaccines.csv.shuf | tail -n 1468 > validation.csv
|
||||||
|
Loading…
Reference in New Issue
Block a user