From 5d23d6d8cc07ae31c271ebc5e9315a6b456a7f46 Mon Sep 17 00:00:00 2001 From: Norbert Walkowiak Date: Sat, 15 Apr 2023 10:45:22 +0200 Subject: [PATCH] update --- Jenkinsfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 535f4cb..5e492ec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,6 @@ pipeline { stage('Preparation') { steps { script { - // Ustawianie danych uwierzytelniajÄ…cych KAGGLE withCredentials([string(credentialsId: '', variable: 'KAGGLE_USERNAME'), string(credentialsId: '', variable: 'KAGGLE_KEY')]) { sh 'export KAGGLE_USERNAME=$KAGGLE_USERNAME && export KAGGLE_KEY=$KAGGLE_KEY' } @@ -26,20 +25,17 @@ pipeline { } stage('checkout') { steps { - //Klonowanie - checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'git-creds', url: 'https://git.wmi.amu.edu.pl/s487175/ium_z487175.git']]]) + git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487175/ium_z487175.git' } } stage('script') { steps { - //skrypt sh './s487175-create-dataset-scriptsh.py > output.txt' } } } post { always { - //archiveArtifacts archiveArtifacts artifacts: 'output.txt', onlyIfSuccessful: true } }