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

Compress image in publish stage

parent e5abb7b2
No related branches found
No related tags found
No related merge requests found
Pipeline #7307 failed
......@@ -9,7 +9,7 @@ build-zynthbox-image-armhf:
stage: build
artifacts:
paths:
- ./ZynthianOS/src/workspace/*.img.xz
- ./ZynthianOS/src/workspace/*.img
expire_in: 1 day
script:
- image_name="zynthbox_rpi4_buster_$(date "+%F_%H%M").img"
......@@ -37,9 +37,6 @@ build-zynthbox-image-armhf:
- mv ./workspace/*.img ./workspace/$image_name
- echo "Image Size -> $(du -h ./workspace/$image_name)"
# Compress image
- xz -zv --threads=$(nproc) ./workspace/$image_name
publish-zynthbox-image-armhf:
tags:
- arm64
......@@ -47,5 +44,12 @@ publish-zynthbox-image-armhf:
stage: publish
needs: ["build-zynthbox-image-armhf"]
dependencies: ["build-zynthbox-image-armhf"]
artifacts:
paths:
- ./ZynthianOS/src/workspace/*.img.xz
expire_in: 1 day
script:
# Compress image
- xz -zv --threads=$(nproc) ./workspace/$image_name
- 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