34 lines
838 B
Groovy
34 lines
838 B
Groovy
pipeline {
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git branch: 'master',
|
|
url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops.git'
|
|
}
|
|
}
|
|
stage('Copy Archive') {
|
|
steps {
|
|
script {
|
|
step ([$class: 'CopyArtifact',
|
|
filter: "wikiniews_results.tsv",
|
|
target: 'wikiniews_results.tsv',
|
|
fingerprintArtifacts: true,
|
|
projectName: 'ASR-eval',
|
|
selector: lastSuccessful()]);
|
|
}
|
|
}
|
|
}
|
|
stage('Count lines'){
|
|
steps {
|
|
sh('chmod +x ./script.sh')
|
|
sh('./script.sh')
|
|
}
|
|
}
|
|
stage('Save result'){
|
|
steps {
|
|
archiveArtifacts 'lines_number.txt'
|
|
}
|
|
}
|
|
}
|
|
}
|