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

8
Jenkinsfile vendored
View File

@ -42,9 +42,11 @@ pipeline {
}
stage('Artifacts') {
steps {
def artifactsList = ['hp_train.csv', 'hp_dev.csv', 'hp_test.csv']
artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact
script {
def artifactsList = ['hp_train.csv', 'hp_dev.csv', 'hp_test.csv']
artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact
}
}
}
}

View File

@ -31,9 +31,11 @@ pipeline {
}
stage('Artifacts') {
steps {
def artifactsList = ['hp_train_stats.csv', 'hp_dev_stats.csv', 'hp_test_stats.csv'']
artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact
script {
def artifactsList = ['hp_train_stats.csv', 'hp_dev_stats.csv', 'hp_test_stats.csv'']
artifactsList.each { artifact ->
archiveArtifacts artifacts: artifact
}
}
}
}