diff options
Diffstat (limited to 'ci/build_deb/build_debs.sh')
-rwxr-xr-x | ci/build_deb/build_debs.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ci/build_deb/build_debs.sh b/ci/build_deb/build_debs.sh new file mode 100755 index 000000000..2fcd3629b --- /dev/null +++ b/ci/build_deb/build_debs.sh @@ -0,0 +1,20 @@ +#!/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 |