update jenkisfiles

This commit is contained in:
Norbert Walkowiak 2023-04-16 08:38:45 +02:00
parent 93d203c91b
commit cb84236203
2 changed files with 16 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -53,10 +53,10 @@ pipeline {
sh 'python3 ./s487175-create-dataset-script.py >> output.txt'
}
}
stage('Archive file') {
steps {
archiveArtifacts artifacts: 'output.txt, diamonds.csv', fingerprint: true
}
}
stage('Archive file') {
steps {
archiveArtifacts artifacts: 'output.txt, diamonds.csv', fingerprint: true
}
}
}
}

View File

@ -22,5 +22,16 @@ pipeline {
)
}
}
stage('Shell Script') {
steps {
// Stats
sh 'chmod +x s487175-dataset-stats-script.sh' > output.txt
}
}
stage('Archive file') {
steps {
archiveArtifacts artifacts: 'output.txt', fingerprint: true
}
}
}
}