s434576-mlworkshops/Jenkinsfile

29 lines
953 B
Plaintext
Raw Normal View History

2019-04-26 10:48:53 +02:00
pipeline {
2019-04-26 12:30:05 +02:00
agent any
2019-04-26 11:28:35 +02:00
stages {
stage('Stage 1') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Stage 2') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '8cdbf19a-e62d-4807-9112-bc7a8d225074', url: 'https://git.wmi.amu.edu.pl/s441391/s441391-mlworkshops']]])
}
}
stage('Stage 3') {
steps {
sh label: '', script: 'wc -l wikiniews_results.tsv > wyniki.txt'
}
}
stage('Stage 4') {
steps {
archiveArtifacts 'wyniki.txt'
}
2019-04-26 11:15:02 +02:00
}
}
2019-04-26 11:28:35 +02:00
}