From 76a8cf5083421c735bddd53bc1e3236157e67ccf Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 8 Jan 2024 16:29:34 +0100 Subject: [PATCH] Add HDD build step to CI pipeline Extended the CI pipeline to include a new job for building the hard disk drive (HDD) image alongside the existing ISO build, leveraging parallel processing with available CPU cores to optimize build time. This ensures automated packaging of the HDD format for broader deployment compatibility. --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8659bcf..c56b425 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,3 +24,11 @@ build_iso: paths: - bin/kumios.iso +build_hdd: + stage: package + script: + - make -j$(nproc) hdd + artifacts: + paths: + - bin/kumios.hdd +