ium_470623/jenkinsfile

39 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-03-21 10:51:30 +01:00
pipeline {
2022-04-11 00:40:48 +02:00
agent {
dockerfile {
additionalBuildArgs '-t ium'
args '-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME} -e KAGGLE_KEY=${params.KAGGLE_KEY}'
}
2022-04-11 00:40:48 +02:00
}
parameters {
string(
defaultValue: 'ikami1',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
password(
2022-04-11 00:40:48 +02:00
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
string(
defaultValue: '35041',
description: 'CUTOFF parameter',
name: 'CUTOFF')
}
2022-03-21 10:51:30 +01:00
stages {
stage('Test stage') {
2022-03-21 10:51:30 +01:00
steps {
2022-03-21 10:58:23 +01:00
echo 'Hello world! Some test text - added text'
2022-03-21 10:51:30 +01:00
}
}
stage('Shell script') {
steps {
sh "./download_dataset.sh"
sh "python3 process_dataset.py"
archiveArtifacts artifacts: "steel_industry_data_test.csv, steel_industry_data_dev.csv, steel_industry_data_train.csv", onlyIfSuccessful: true
}
}
2022-03-21 10:51:30 +01:00
}
}