ium_487187/JenkinsfileDL
Jakub Zaręba 48a95ce283 s
2023-05-10 16:48:31 +02:00

34 lines
930 B
Plaintext

pipeline {
agent {
docker {
image 'python:3.11'
args '-v /root/.cache:/root/.cache'
command 'sh', '-c', 'pip install pandas && tail -f /dev/null'
}
}
parameters {
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
}
stages {
stage('Pobierz dane') {
steps {
script {
copyArtifacts(projectName: 's487187-create-dataset', fingerprintArtifacts: true)
}
}
}
stage('Trenuj model') {
steps {
script {
// sh 'python3 train.py ${params.EPOCHS}'
sh 'python3 train.py'
}
}
}
stage('Zarchiwizuj model') {
steps {
archiveArtifacts artifacts: 'model.h5', fingerprint: true
}
}
}
}