Changed Jenkinsfile
This commit is contained in:
parent
7de7ed5ac0
commit
6c2b74c4e8
66
Jenkinsfile
vendored
66
Jenkinsfile
vendored
@ -1,39 +1,27 @@
|
|||||||
pipeline {
|
node {
|
||||||
agent any
|
stage('Preparation') {
|
||||||
|
properties([
|
||||||
parameters {
|
parameters([
|
||||||
string(
|
string(
|
||||||
defaultValue: 'gulczas',
|
defaultValue: 'tomaszzitkiewicz',
|
||||||
description: 'Kaggle username',
|
description: 'Kaggle username',
|
||||||
name: 'KAGGLE_USERNAME',
|
name: 'KAGGLE_USERNAME',
|
||||||
trim: false
|
trim: false
|
||||||
)
|
),
|
||||||
password(
|
password(
|
||||||
defaultValue: '',
|
defaultValue: '',
|
||||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||||
name: 'KAGGLE_KEY'
|
name: 'KAGGLE_KEY'
|
||||||
)
|
)
|
||||||
}
|
])
|
||||||
|
])
|
||||||
stages {
|
}
|
||||||
stage('Clone Repository') {
|
stage('Build') {
|
||||||
steps {
|
// Run the maven build
|
||||||
git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git'
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||||
}
|
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
||||||
}
|
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
|
||||||
stage('Run Script') {
|
sh 'kaggle datasets list'
|
||||||
steps {
|
}
|
||||||
script {
|
}
|
||||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
}
|
||||||
sh 'bash download_dataset.sh $KAGGLE_USERNAME $KAGGLE_KEY'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Archive Artifacts') {
|
|
||||||
steps {
|
|
||||||
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user