ium_444417/Jenkinsfile
2022-04-06 19:06:58 +02:00

34 lines
1.0 KiB
Groovy

pipeline {
parameters{
string(
defaultValue: 'mikolaj2',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'
)
string(
defaultValue: '20',
description: 'Value for head command',
name: 'CUTOFF'
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
agent { dockerfile true }
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
stage("Shell Scripts") {
steps {
// sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
// sh 'python3 ./src/task1python.py'
archiveArtifacts 'data.txt'
}
}
}
}