28 lines
855 B
Plaintext
28 lines
855 B
Plaintext
|
pipeline {
|
||
|
agent { dockerfile true }
|
||
|
stages {
|
||
|
stage('checkoutGit') {
|
||
|
steps {
|
||
|
git 'https://git.wmi.amu.edu.pl/s426086/s426086-plots'
|
||
|
}
|
||
|
}
|
||
|
stage('copyArtifacts') {
|
||
|
steps {
|
||
|
copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 's426086-metrics', selector: lastSuccessful()
|
||
|
copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 's426086-metrics', selector: lastSuccessful()
|
||
|
}
|
||
|
}
|
||
|
stage('plots') {
|
||
|
steps {
|
||
|
sh 'chmod a+rwx plot.py'
|
||
|
sh 'python3 plot.py'
|
||
|
}
|
||
|
}
|
||
|
stage('archiveArtifacts') {
|
||
|
steps {
|
||
|
archiveArtifacts 'wer.txt'
|
||
|
archiveArtifacts 'srr.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|