Usuń 'JenkinsfilePlots'

This commit is contained in:
Diana Król 2020-04-04 16:48:03 +00:00
parent 5ca20f89a2
commit a02802033b

View File

@ -1,20 +0,0 @@
pipeline {
agent { dockerfile true }
stages {
stage('Hello') {
steps {
git 'https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git'
copyArtifacts filter: 'srr.txt, wer.txt', fingerprintArtifacts: true, optional: true, projectName: 's416267-metrics', target: './'
}
}
stage('Wykresy') {
steps{
sh('chmod +x ./plots.sh')
sh('./plots.sh wer srr')
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}