ium_487187/JenkinsfileEvaluate
Jakub Zaręba 6396535ab8 s
2023-05-10 18:36:25 +02:00

45 lines
1.3 KiB
Plaintext

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