s152203-mlworkshops/Jenkinsfile
2020-04-03 12:48:58 +02:00

23 lines
530 B
Groovy

pipeline {
agent any
stages {
stage('checkout'){
steps {
git url: 'https://git.wmi.amu.edu.pl/s152203/s152203-mlworkshops'
echo 'Check out from version control'
}
}
stage('Hello') {
steps {
echo 'Hello World'
}
}
stage('Copy artifacts'){
steps{
copyArtifacts filter: 'wikiniews_results.tsv ', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
}