From 78939608fc075b150ce2c313a5ff7e2b117f23c4 Mon Sep 17 00:00:00 2001 From: s470618 Date: Thu, 23 Mar 2023 14:42:29 +0100 Subject: [PATCH] git cloning fix --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6c3904a..fddbf75 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 https://git.wmi.amu.edu.pl/s470618/ium_470618.git sh script.sh } } stage('artifacts') { steps { echo 'saving artifacts' archiveArtifacts 'output.txt' } } } \ No newline at end of file +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' } } } \ No newline at end of file