s426274-mlworkshops/Jenkinsfile
2020-04-21 19:04:45 +02:00

34 lines
905 B
Groovy

pipeline {
agent any
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',
projectName: 'ASR-eval',
filter: "wikiniews_results.tsv",
target: 'wikiniews_results.tsv']);
}
}
}
stage('checkout: Check out from version control') {
steps {
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops.git'
}
}
stage('Count lines'){
steps {
sh('chmod +x ./numberOfLines.sh')
sh('./numberOfLines.sh')
}
}
}
}