ium_444417/Jenkinsfile
s444417 62776f2899
Some checks failed
s444417-training/pipeline/head This commit looks good
s444417-evaluation/pipeline/head There was a failure building this commit
add -o option
2022-05-04 16:17:27 +02:00

46 lines
1.3 KiB
Groovy

pipeline {
agent {
docker { image 'mikolajk/ium:latest' }
}
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'
)
}
options {
copyArtifactPermission('s444417-training');
}
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 'ls -la'
sh 'unzip -o house-price-dataset.zip'
sh 'python3 ./src/task1python.py'
archiveArtifacts 'Participants_Data_HPP/**/*.*'
}
}
stage ('Starting train job') {
steps {
build job: 's444417-training/master', wait: false
}
}
}
}