summaryrefslogtreecommitdiffstats
path: root/ci/build_deb/build_debs_docker.sh
diff options
context:
space:
mode:
authorJiang, Yunhong <yunhong.jiang@intel.com>2016-08-23 22:17:42 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-23 22:17:42 +0000
commit76c2ed6659d79ee83c8fc4f00e955268779db826 (patch)
tree5bbdc58f68f4cd56816dfba3dc8e92a8f9f2a135 /ci/build_deb/build_debs_docker.sh
parent2b76a9cbd6c127109286c8705f3347415eb26753 (diff)
parent7552c26370d38ef5dd182682a0d3bf096661fe0e (diff)
Merge "OPNFV KVM4NFV CICD: Scripts for creating Rpms & Debians for Kernel, Qemu"
Diffstat (limited to 'ci/build_deb/build_debs_docker.sh')
-rwxr-xr-xci/build_deb/build_debs_docker.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/ci/build_deb/build_debs_docker.sh b/ci/build_deb/build_debs_docker.sh
new file mode 100755
index 000000000..3fd35ff54
--- /dev/null
+++ b/ci/build_deb/build_debs_docker.sh
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+tmp_deb_build_dir=/root/kvmfornfv
+deb_build_dir=/opt/kvmfornfv
+tmp_deb_output_dir=$tmp_deb_build_dir/build_output
+deb_output_dir=$deb_build_dir/build_output
+cp -r $deb_build_dir $tmp_deb_build_dir
+
+# Build qemu debian packages
+cd $tmp_deb_build_dir/qemu
+make clean
+./configure
+make
+cd $tmp_deb_build_dir
+./ci/build_deb/qemu_deb_build.sh build_output
+
+# Build kernel debian packages
+./ci/build_deb/kernel_deb_build.sh build_output
+
+# Move Kernel and Qemu Debian builds from tmp_output_dir to output_dir
+mv $tmp_deb_output_dir/qemu-* $deb_output_dir
+mv $tmp_deb_output_dir/linux-* $deb_output_dir