s416422-mlworkshops/Jenkinsfile

15 lines
587 B
Plaintext
Raw Normal View History

2019-04-26 12:19:40 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('Stage 1') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh 'ls -l'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416422/s416422-mlworkshops.git']]])
2019-04-26 13:24:26 +02:00
sh 'sh script.sh wikiniews_results.tsv'
2019-04-26 12:19:40 +02:00
archiveArtifacts 'lines.txt'
}
}
}
2019-04-26 10:51:29 +02:00
}