23 lines
528 B
Groovy
23 lines
528 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: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |