diff --git a/Jenkinsfile b/Jenkinsfile index e7d04ab..911e573 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,12 @@ pipeline { agent any stages { - stage('Stage 1') { + stage('Zad_1_5') { steps { - echo 'Hello world!' + checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452094/s452094-mlworkshops']]]) + copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() + sh label: '', script: 'wc -l wikiniews_results.tsv > results/result.txt' + archive 'results/**' } } }