ium_478831/jenkinsfile

46 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-03-21 11:05:14 +01:00
pipeline {
2022-03-27 17:02:10 +02:00
agent any
2022-03-27 20:59:36 +02:00
parameters{
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_SECRET_KEY'
)
string(
defaultValue: 'riraasaa',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'
)
string(
defaultValue: '20',
description: 'Value for head command',
name: 'CUTOFF'
)
}
environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
KAGGLE_KEY="$params.KAGGLE_KEY"
CUTOFF="$params.CUTOFF"
}
2022-03-27 17:02:10 +02:00
stages {
stage('Checkout') {
steps {
script {
git credentialsId: 'jenkins-user-github', url: 'https://git.wmi.amu.edu.pl/s478831/ium_478831.git'
sh "ls -lart ./*"
sh "git branch -a"
sh "git checkout master"
}
}
2022-03-21 11:05:14 +01:00
}
2022-03-27 20:59:36 +02:00
stage("Shell Script") {
steps {
sh "chmod u+x ./script.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./script.sh"
archiveArtifacts 'data.csv'
archiveArtifacts 'adult-income-dataset.csv'
}
}
2022-03-27 17:02:10 +02:00
}
2022-03-21 11:05:14 +01:00
}