fix errors

This commit is contained in:
PawelDopierala 2024-04-02 20:50:45 +02:00
parent 6f1f4c00f3
commit 16eb3c975b
2 changed files with 10 additions and 6 deletions

2
Jenkinsfile vendored
View File

@ -42,6 +42,7 @@ pipeline {
}
stage('Artifacts') {
steps {
script {
def artifactsList = ['hp_train.csv', 'hp_dev.csv', 'hp_test.csv']
artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact
@ -50,3 +51,4 @@ pipeline {
}
}
}
}

View File

@ -31,6 +31,7 @@ pipeline {
}
stage('Artifacts') {
steps {
script {
def artifactsList = ['hp_train_stats.csv', 'hp_dev_stats.csv', 'hp_test_stats.csv'']
artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact
@ -39,3 +40,4 @@ pipeline {
}
}
}
}