2019-04-26 11:22:56 +02:00
|
|
|
pipeline {
|
2019-04-26 13:37:12 +02:00
|
|
|
agent { dockerfile true }
|
2019-04-26 11:22:56 +02:00
|
|
|
stages {
|
|
|
|
stage('Stage 1') {
|
|
|
|
steps {
|
2019-04-26 12:41:30 +02:00
|
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
2019-04-26 12:51:12 +02:00
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '8cdbf19a-e62d-4807-9112-bc7a8d225074', url: 'https://git.wmi.amu.edu.pl/s152362/s152362-mlworkshops.git']]])
|
2019-04-26 14:14:14 +02:00
|
|
|
sh 'sh skrypt.sh wikiniews_results.tsv > results.txt'
|
2019-04-26 14:32:24 +02:00
|
|
|
sh 'sh skrypt2.sh'
|
2019-04-26 13:10:48 +02:00
|
|
|
archiveArtifacts 'results.txt'
|
2019-04-26 11:22:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|