summaryrefslogtreecommitdiffstats
path: root/ci/build_deb/build_debs.sh
diff options
context:
space:
mode:
authorshravani <shravani.p@tcs.com>2016-12-20 15:09:34 +0530
committerShravani Paladugula <shravani.p@tcs.com>2017-02-09 04:34:34 +0000
commit843dfef73c86a8ad71afe36e2db9e711dddc199a (patch)
tree52c15baf57c751cf91bf35b3dbc027adacfa7a1d /ci/build_deb/build_debs.sh
parent881aa3fcf152088440444d6f4296eaac3783801c (diff)
Combine the common code for kernel building on deb/rpm
This patch removes the duplication of code in rpm/debian build scripts. Change-Id: I88edc93df488bd01a43cd98e4f69f35e09f8f61c Signed-off-by: Shravani <shravani.p@tcs.com>
Diffstat (limited to 'ci/build_deb/build_debs.sh')
-rwxr-xr-xci/build_deb/build_debs.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/ci/build_deb/build_debs.sh b/ci/build_deb/build_debs.sh
deleted file mode 100755
index 2fcd3629b..000000000
--- a/ci/build_deb/build_debs.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-set -eux
-BUILD_FOR=${BUILD_FOR:-ubuntu}
-
-function build_deb_pkg {
- case $1 in
- ubuntu)
- sudo docker build -t kvm_deb .
- sudo docker run -v $WORKSPACE:/opt/kvmfornfv -t kvm_deb \
- /opt/kvmfornfv/ci/build_deb/build_debs_docker.sh
- ;;
- *) echo "Not supported system"; exit 1;;
- esac
-}
-
-for system in $BUILD_FOR
-do
- build_deb_pkg $system
-done