From 767e19f21a6e28f99a7e1488078b2c032d6c8d0c Mon Sep 17 00:00:00 2001 From: jakubknczny Date: Sun, 28 Mar 2021 18:10:44 +0200 Subject: [PATCH] comment out zadanie 6 --- Jenkinsfile_create_dataset | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile_create_dataset b/Jenkinsfile_create_dataset index 9e4ac73..0b4e701 100644 --- a/Jenkinsfile_create_dataset +++ b/Jenkinsfile_create_dataset @@ -1,6 +1,6 @@ pipeline { agent any - properties([parameters([string(defaultValue: '20000', description: 'numbers of data entries to keep in train.csv', name: 'CUTOFF', trim: true)])]) + // properties([parameters([string(defaultValue: '20000', description: 'numbers of data entries to keep in train.csv', name: 'CUTOFF', trim: true)])]) stages { stage('sh: Shell Script') { steps { @@ -8,7 +8,7 @@ pipeline { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { sh 'chmod +x script-zadanie-2-4.sh' sh './script-zadanie-2-4.sh' - sh 'head -n ${CUTOFF} train.csv > train.csv' + // sh 'head -n ${CUTOFF} train.csv > train.csv' } } }