s437843-mlworkshops/Jenkinsfile.txt

25 lines
785 B
Plaintext
Raw Normal View History

2020-04-03 14:59:46 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s437843/s437843-mlworkshops']]])
}
}
stage('Stage 1') {
steps {
2020-04-03 15:08:33 +02:00
copyArtifacts filter: 'wikiniews_results.tsv ', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-03 14:59:46 +02:00
}
}
stage('Stage 1') {
steps {
sh label: '', script: ''
}
}
stage('Stage 1') {
steps {
archiveArtifacts 'results.txt'
}
}
}
}