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 + } } }