update jenkisfiles

This commit is contained in:
Norbert Walkowiak 2023-04-16 08:38:45 +02:00
parent 93d203c91b
commit cb84236203
2 changed files with 16 additions and 5 deletions

View File

@ -22,5 +22,16 @@ pipeline {
) )
} }
} }
stage('Shell Script') {
steps {
// Stats
sh 'chmod +x s487175-dataset-stats-script.sh' > output.txt
}
}
stage('Archive file') {
steps {
archiveArtifacts artifacts: 'output.txt', fingerprint: true
}
}
} }
} }