From 9c9ac6a1a2614bfdfd97fd9622cd9f17a31f568d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Pokrywka?= Date: Sun, 27 Mar 2022 20:47:04 +0200 Subject: [PATCH] wip --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 73b0018..98c866f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,12 +1,12 @@ pipeline { agent any stages { - stage('Stage 1 - checkout') { + stage('checkout: Check out from version control') { steps { - checkout scm + checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444463', url: 'https://git.wmi.amu.edu.pl/s444463/ium_444463.git']]]) } } - stage('Stage 2 - bash script') { + stage('bash script') { steps { ./process_data.sh }