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') { stage('Artifacts') {
steps { steps {
script {
def artifactsList = ['hp_train.csv', 'hp_dev.csv', 'hp_test.csv'] def artifactsList = ['hp_train.csv', 'hp_dev.csv', 'hp_test.csv']
artifactsList.each { artifact -> artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact archiveArtifacts artifacts: artifact
@ -49,4 +50,5 @@ pipeline {
} }
} }
} }
}
} }

View File

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