Update 'Jenkinsfile_create_dataset'

This commit is contained in:
Patryk Gałka 2023-04-19 11:06:39 +02:00
parent a2955ad207
commit f40e99277a

View File

@ -61,7 +61,8 @@ pipeline {
sh 'pwd' sh 'pwd'
echo ' ls -a' echo ' ls -a'
sh 'ls -a' sh 'ls -a'
sh 'python /ium_z434686/create-dataset.py' sh 'python create-dataset.py'
archiveArtifacts 'file.txt'
} }
} }
stage('Goodbye!') { stage('Goodbye!') {
@ -70,7 +71,7 @@ pipeline {
//Zarchiwizuj wynik //Zarchiwizuj wynik
//archiveArtifacts 'output.txt' //archiveArtifacts 'output.txt'
archiveArtifacts 'dataset.csv' archiveArtifacts 'dataset.csv'
archiveArtifacts 'file.txt'
} }
} }