edit Jenkinsfile and add datasetscript.sh

This commit is contained in:
s487179 2023-04-13 22:26:46 +02:00
parent 56ca080046
commit 9ae0efe0cd
2 changed files with 35 additions and 26 deletions

56
Jenkinsfile vendored
View File

@ -1,27 +1,33 @@
node { pipeline {
stage('Preparation') { agent any
properties([ parameters {
parameters([ string(
string( defaultValue: 'wojciechbatruszewicz',
defaultValue: 'wojciechbatruszewicz', 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('Configure kaggle') {
} steps {
stage('Build') { // Run the maven build
// Run the maven build withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'kaggle datasets list' sh 'kaggle datasets list'
} }
} }
}
stage('Run sh file') {
steps {
sh './datasetscript.sh'
}
}
}
} }

3
datasetscrpit.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'kaggle datasets list'