ium_452487/Jenkinsfile
2024-05-04 15:29:58 +02:00

18 lines
445 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('evaluateDataset') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 's452487-training'
sh "chmod +x -R ${env.WORKSPACE}"
sh './evaluate.sh'
}
}
stage('archiveArtifacts') {
steps {
echo "Zapisywanie artefaktów..."
}
}
}
}