Zadanie 1
This commit is contained in:
parent
4871908b5b
commit
190f2147ac
17
Jenkinsfile
vendored
17
Jenkinsfile
vendored
@ -3,7 +3,22 @@ pipeline {
|
|||||||
stages {
|
stages {
|
||||||
stage('Stage 1') {
|
stage('Stage 1') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Hello world!'
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s437843/s437843-mlworkshops']]])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Stage 2') {
|
||||||
|
steps {
|
||||||
|
copyArtifacts filter: 'wikiniews_results.tsv ', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Stage 3') {
|
||||||
|
steps {
|
||||||
|
sh label: '', script: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Stage 4') {
|
||||||
|
steps {
|
||||||
|
archiveArtifacts 'results.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user