summaryrefslogtreecommitdiffstats
path: root/ci/build_deb/build_debs.sh
diff options
context:
space:
mode:
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