sh command
This commit is contained in:
parent
e0e80a83b6
commit
ad5d1ff7f5
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -1 +1 @@
|
||||
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'wiktorbombola',
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'
)
])
])
}
stage('Build') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
checkout scm
sh script.sh
}
}
stage('artifacts') {
steps {
echo 'saving artifacts'
archiveArtifacts 'output.txt'
}
}
}
|
||||
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'wiktorbombola',
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'
)
])
])
}
stage('Build') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
checkout scm
sh './script.sh'
}
}
stage('artifacts') {
steps {
echo 'saving artifacts'
archiveArtifacts 'output.txt'
}
}
}
|
Loading…
Reference in New Issue
Block a user