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

View File

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