From 421f00e3b1522eb505bc3e995b21bdac29d0138c Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Thu, 16 Feb 2023 11:11:23 -0800 Subject: [PATCH] Build and archive deb packages. (#590) * build and archive deb packages * fix syntax * run QA to test building packages * apply cron to develop branch again [ROCm/composable_kernel commit: 584d233cfecfc01e04da145865f693cbd48c4e8f] --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 4e4c7ad8fa..98d3fba0ff 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -471,6 +471,12 @@ def Build_CK(Map conf=[:]){ //we only need the ckProfiler to run the performance tests, so we pack and stash it sh 'tar -zcvf ckProfiler.tar.gz bin/ckProfiler' stash "ckProfiler.tar.gz" + if (params.RUN_FULL_QA){ + // build deb packages + sh 'make -j package' + archiveArtifacts artifacts: 'composablekernel-ckprofiler_*.deb' + archiveArtifacts artifacts: 'composablekernel-tests_*.deb' + } } } }