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 {
always {
archiveArtifacts artifacts: 'stats.txt.gz', fingerprint: true
archiveArtifacts artifacts: 'stats.txt', fingerprint: true
}
}
}

View File

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