pipeline { agent { dockerfile true } stages { stage('Checkout') { steps { checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452094/s452094-mlworkshops']]]) } } stage('Copy artifacts') { steps { copyArtifacts filter: '*.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() } } stage('Get data') { steps { sh label: 'count lines', script: './get_data.sh' } } stage('SCLITE') { steps { sh label: 'count lines', script: './sclite.sh' } } stage('Archive artifacts') { steps { } } } }