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

20
Jenkinsfile vendored
View File

@ -1,7 +1,6 @@
node { pipeline {
stage('Preparation') { agent any
properties([ parameters {
parameters([
string( string(
defaultValue: 'wojciechbatruszewicz', defaultValue: 'wojciechbatruszewicz',
description: 'Kaggle username', description: 'Kaggle username',
@ -13,10 +12,10 @@ node {
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'
) )
])
])
} }
stage('Build') { stages {
stage('Configure kaggle') {
steps {
// 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}" ]) {
@ -25,3 +24,10 @@ node {
} }
} }
} }
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'