Zadanie 1

This commit is contained in:
Karolina Krzywda 2020-04-03 14:59:46 +02:00
parent f72dee732b
commit 3248fd09da

25
Jenkinsfile.txt Normal file
View File

@ -0,0 +1,25 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s437843/s437843-mlworkshops']]])
}
}
stage('Stage 1') {
steps {
copyArtifacts filter: 'wikinews_results.txt', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Stage 1') {
steps {
sh label: '', script: ''
}
}
stage('Stage 1') {
steps {
archiveArtifacts 'results.txt'
}
}
}
}