20 lines
508 B
Plaintext
20 lines
508 B
Plaintext
pipeline {
|
|
agent { dockerfile true }
|
|
|
|
stages {
|
|
stage('Hello') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops'
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
} |