28 lines
731 B
Groovy
28 lines
731 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('checkoutGit') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops'
|
|
}
|
|
}
|
|
stage('copyArtifacts') {
|
|
steps {
|
|
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s426274-metrics'
|
|
}
|
|
}
|
|
stage('countLines') {
|
|
steps {
|
|
sh 'chmod 777 ./script.sh'
|
|
sh './script.sh'
|
|
}
|
|
}
|
|
stage('archiveArtifacts') {
|
|
steps {
|
|
archiveArtifacts 'countlines_result.txt'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|