Skip to content
Snippets Groups Projects
Commit da36bea7 authored by ab0027's avatar ab0027 💬
Browse files

Do not compress image in publish job. Do it in build job

parent 4c53680c
No related branches found
No related tags found
No related merge requests found
Pipeline #7311 failed
...@@ -9,7 +9,7 @@ build-zynthbox-image-armhf: ...@@ -9,7 +9,7 @@ build-zynthbox-image-armhf:
stage: build stage: build
artifacts: artifacts:
paths: paths:
- ./ZynthianOS/src/workspace/*.img - ./ZynthianOS/src/workspace/*.img.xz
expire_in: 1 day expire_in: 1 day
script: script:
- image_name="zynthbox_rpi4_buster_$(date "+%F_%H%M").img" - image_name="zynthbox_rpi4_buster_$(date "+%F_%H%M").img"
...@@ -36,6 +36,9 @@ build-zynthbox-image-armhf: ...@@ -36,6 +36,9 @@ build-zynthbox-image-armhf:
- bash -x ./build_dist - bash -x ./build_dist
- mv ./workspace/*.img ./workspace/$image_name - mv ./workspace/*.img ./workspace/$image_name
- echo "Image Size -> $(du -h ./workspace/$image_name)" - echo "Image Size -> $(du -h ./workspace/$image_name)"
# Compress image
- xz -zv --threads=$(nproc) ./workspace/$image_name
publish-zynthbox-image-armhf: publish-zynthbox-image-armhf:
tags: tags:
...@@ -49,7 +52,4 @@ publish-zynthbox-image-armhf: ...@@ -49,7 +52,4 @@ publish-zynthbox-image-armhf:
- ./ZynthianOS/src/workspace/*.img.xz - ./ZynthianOS/src/workspace/*.img.xz
expire_in: 1 day expire_in: 1 day
script: script:
# Compress image
- xz -zv --threads=$(nproc) ./workspace/$image_name
- echo "Compressed Image Size -> $(du -h ./ZynthianOS/src/workspace/$image_name.xz)" - echo "Compressed Image Size -> $(du -h ./ZynthianOS/src/workspace/$image_name.xz)"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment