Unverified Commit 584d233c authored by Illia Silin's avatar Illia Silin Committed by GitHub
Browse files

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
parent cb3fac4d
...@@ -471,6 +471,12 @@ def Build_CK(Map conf=[:]){ ...@@ -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 //we only need the ckProfiler to run the performance tests, so we pack and stash it
sh 'tar -zcvf ckProfiler.tar.gz bin/ckProfiler' sh 'tar -zcvf ckProfiler.tar.gz bin/ckProfiler'
stash "ckProfiler.tar.gz" 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'
}
} }
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment