Update Jenkinsfile

This commit is contained in:
s452487 2024-05-04 16:46:48 +02:00
parent 322f486b91
commit 0352e5bccc
1 changed files with 5 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -1,9 +1,14 @@
pipeline {
agent { dockerfile true }
options {
copyArtifactPermission('*');
}
stages {
stage('evaluateDataset') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 's452487-training'
copyArtifacts filter: '*/metrics.json', fingerprintArtifacts: true, projectName: 's452487-evaluation', optional: true
sh "chmod +x -R ${env.WORKSPACE}"
sh './evaluate.sh'
}