summaryrefslogtreecommitdiffstats
path: root/ci/build_deb/build_debs_docker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/build_deb/build_debs_docker.sh')
-rwxr-xr-xci/build_deb/build_debs_docker.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/ci/build_deb/build_debs_docker.sh b/ci/build_deb/build_debs_docker.sh
deleted file mode 100755
index 3fd35ff54..000000000
--- a/ci/build_deb/build_debs_docker.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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