ium_487187/JenkinsfileEvaluate
Jakub Zaręba 4d54a3f810 s
2023-05-10 17:35:16 +02:00

46 lines
1.3 KiB
Plaintext

pipeline {
agent {
docker {
image 'python:3.11'
args '-v /root/.cache:/root/.cache -u root'
}
}
parameters {
gitParameter name: 'BRANCH', type: 'PT_BRANCH'
buildSelector(name: 'BUILD_NUMBER', description: 'Wybierz numer buildu', defaultSelector: lastSuccessful())
}
stages {
stage('Preparation') {
steps {
sh 'pip install pandas tensorflow scikit-learn matplotlib'
}
}
stage('Pobierz dane') {
steps {
script {
copyArtifacts(projectName: 's487187-create-dataset', fingerprintArtifacts: true)
}
}
}
stage('Pobierz model') {
steps {
script {
copyArtifacts(projectName: 's487187-training', selector: specific("${params.BUILD_NUMBER}"), fingerprintArtifacts: true)
}
}
}
stage('Ewaluuj model') {
steps {
script {
sh "python3 evaluate.py"
}
}
}
stage('Zarchiwizuj wyniki') {
steps {
archiveArtifacts artifacts: 'metrics.txt,plot.png', fingerprint: true
}
}
}
}