update jenkisfile lab 6 zad 1

This commit is contained in:
Norbert Walkowiak 2023-06-07 20:17:28 +02:00
parent eaab2946c8
commit aa6dcdd895

View File

@ -1,6 +1,14 @@
pipeline{
agent any
parameters {
string(
name: 'EPOCHS',
description: 'Number of epochs',
defaultValue: '10'
)
}
stages{
stage('Copy dataset'){
steps{
@ -22,12 +30,4 @@ pipeline{
}
}
}
parameters{
string{
name: 'EPOCHS',
description: 'Number of epochs',
defaultValue: '10',
}
}
}