s416267-mlworkshops/Jenkinsfile

14 lines
532 B
Plaintext
Raw Normal View History

2020-04-03 11:22:15 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
2020-04-03 11:28:54 +02:00
echo 'Trigger Check'
2020-04-03 12:29:06 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops']]])
2020-04-03 12:44:35 +02:00
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-03 11:22:15 +02:00
}
}
}
}