add env var
This commit is contained in:
parent
ce95876fad
commit
888d8a1fc6
30
Jenkinsfile
vendored
30
Jenkinsfile
vendored
@ -1,9 +1,31 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage("Hello") {
|
stage('Preparation') {
|
||||||
steps {
|
properties([
|
||||||
echo "Start.."
|
parameters([
|
||||||
|
string(
|
||||||
|
defaultValue: 'mikolaj2',
|
||||||
|
description: 'Kaggle username',
|
||||||
|
name: 'KAGGLE_USERNAME',
|
||||||
|
trim: false
|
||||||
|
),
|
||||||
|
password(
|
||||||
|
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: '',
|
||||||
|
description: 'Value for head command',
|
||||||
|
name: 'CUTOFF'
|
||||||
|
)
|
||||||
|
])
|
||||||
|
])
|
||||||
|
environment {
|
||||||
|
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
|
||||||
|
KAGGLE_KEY="$params.KAGGLE_KEY"
|
||||||
|
CUTOFF="$params.CUTOFF"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Check out from version control") {
|
stage("Check out from version control") {
|
||||||
@ -11,10 +33,10 @@ pipeline {
|
|||||||
checkout scm
|
checkout scm
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("Shell Script") {
|
stage("Shell Script") {
|
||||||
steps {
|
steps {
|
||||||
sh "chmod u+x ./startscript.sh"
|
sh "chmod u+x ./startscript.sh"
|
||||||
|
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript.sh"
|
||||||
archiveArtifacts 'data.txt'
|
archiveArtifacts 'data.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user