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: 584d233cfe]
This commit is contained in:
Illia Silin
2023-02-16 11:11:23 -08:00
committed by GitHub
parent 12a9469341
commit 421f00e3b1

6
Jenkinsfile vendored
View File

@@ -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'
}
}
}
}