skip gzip step

This commit is contained in:
piotrwrzodak 2023-04-21 00:25:06 +02:00
parent 5b87600923
commit b7068af19e
2 changed files with 2 additions and 4 deletions

View File

@ -21,7 +21,7 @@ pipeline {
} }
post { post {
always { always {
archiveArtifacts artifacts: 'stats.txt.gz', fingerprint: true archiveArtifacts artifacts: 'stats.txt', fingerprint: true
} }
} }
} }

View File

@ -1,5 +1,3 @@
#!/bin/bash #!/bin/bash
cat barcelona_weekends.dev.csv | wc -l > stats cat barcelona_weekends.dev.csv | wc -l > stats.txt
gzip -c stats > stats.txt.gz