zad1
This commit is contained in:
parent
3cb87e0b7d
commit
002c895762
19
jenkinsfile
19
jenkinsfile
@ -2,9 +2,24 @@ pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Stage 1') {
|
||||
stage('Cloning GIT') {
|
||||
steps {
|
||||
echo 'Hello World2222'
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452108/s452108-mlworkshops']]])
|
||||
}
|
||||
}
|
||||
stage('Copy Artifacts') {
|
||||
steps {
|
||||
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||
}
|
||||
}
|
||||
stage('Count words') {
|
||||
steps {
|
||||
sh label: '', script: 'count.sh'
|
||||
}
|
||||
}
|
||||
stage('Archive atifacts') {
|
||||
steps {
|
||||
archiveArtifacts 'file.txt'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user