ium_478839/Jenkinsfile

13 lines
435 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
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
}
}
}
}