From 79d5a3228e8167803eb7b557b77f590f07b86f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Wa=C5=82=C4=99sa?= Date: Sun, 27 Mar 2022 15:58:36 +0200 Subject: [PATCH] Zaktualizuj 'Jenkinsfile' --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ffd6cc0..ccdfd81 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,10 @@ pipeline { stages { stage('Stage 1') { steps { - echo 'Hello world!' + checkout([$class: 'GitSCM', branches: [[name: '*/feature']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s478839/ium_478839.git']]]) + sh './skrypt.sh' + archiveArtifacts artifacts: 'understat.csv', 'understat_per_game.csv', followSymlinks: false + } } }