From 1fbcbb3fc1793d9e649b4c53d0f2a7ce2f288e59 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 18 Aug 2025 19:59:27 -0500 Subject: [PATCH] fixup! wip: ci: Begin Jenkins pipeline --- ci/Jenkinsfile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 38a1128..4f72538 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -33,6 +33,15 @@ pipeline { sh 'git clean -fdx' } } + + stage('Prepare') { + steps { + container('jnlp') { + sh 'git submodule update --remote aimee-os' + } + } + } + stage('Build') { steps { sh 'make config && make update-config' @@ -41,10 +50,12 @@ pipeline { post { success { dir('_build/images') { + sh 'zstd firmware.img' + sh 'zstd sdcard.img' archiveArtifacts([ - 'firmware.img', + 'firmware.img.zst', 'rootfs.squashfs', - 'sdcard.img', + 'sdcard.img.zst', ].join(',')) } }