ium_470607/Jenkinsfile

20 lines
682 B
Groovy

pipeline {
agent any
properties([parameters([string(defaultValue: '20000', description: '', name: 'CUTOFF', trim: false)])])
stages {
stage('sh: Shell Script') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"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'
}
archiveArtifacts 'train.csv'
archiveArtifacts 'test.csv'
archiveArtifacts 'valid.csv'
}
}
}
}