From 35086233fdfb4163c589fc258229a931bb02df1a Mon Sep 17 00:00:00 2001 From: Yifei Xue Date: Wed, 2 Nov 2016 18:09:35 +0800 Subject: Create make_repo directory and optimize the current repo making related script JIRA: COMPASS-496 Change-Id: I662d996382d38a3e9d0de6598dabe403b9d51665 Signed-off-by: Yifei Xue --- repo/features/Dockerfile | 22 +++++++++ repo/features/brahmaputra/make_odl.sh | 18 +++++++ repo/features/brahmaputra/make_opencon-trail.sh | 20 ++++++++ repo/features/colorado/make_kvmfornfv.sh | 65 +++++++++++++++++++++++++ repo/features/colorado/make_moon.sh | 20 ++++++++ repo/features/colorado/make_odl.sh | 18 +++++++ repo/features/colorado/make_onos.sh | 18 +++++++ repo/features/colorado/make_opencon-trail.sh | 20 ++++++++ repo/features/danube/make_moon.sh | 20 ++++++++ repo/features/danube/make_odl.sh | 22 +++++++++ repo/features/danube/make_onos.sh | 18 +++++++ repo/features/danube/make_opencon-trail.sh | 20 ++++++++ 12 files changed, 281 insertions(+) create mode 100644 repo/features/Dockerfile create mode 100644 repo/features/brahmaputra/make_odl.sh create mode 100644 repo/features/brahmaputra/make_opencon-trail.sh create mode 100644 repo/features/colorado/make_kvmfornfv.sh create mode 100644 repo/features/colorado/make_moon.sh create mode 100644 repo/features/colorado/make_odl.sh create mode 100644 repo/features/colorado/make_onos.sh create mode 100644 repo/features/colorado/make_opencon-trail.sh create mode 100644 repo/features/danube/make_moon.sh create mode 100644 repo/features/danube/make_odl.sh create mode 100644 repo/features/danube/make_onos.sh create mode 100644 repo/features/danube/make_opencon-trail.sh (limited to 'repo/features') diff --git a/repo/features/Dockerfile b/repo/features/Dockerfile new file mode 100644 index 00000000..59788953 --- /dev/null +++ b/repo/features/Dockerfile @@ -0,0 +1,22 @@ +FROM ubuntu:14.04.3 +MAINTAINER Yifei Xue + +ADD ./cp_pkg.sh /cp_pkg.sh + +ADD ./feature_run.sh /feature_run.sh + +RUN mkdir run_script + +ADD ./make_pkg/* /run_script/ + +RUN apt-get update + +RUN apt-get install -y curl vim git + +RUN chmod +x /feature_run.sh + +RUN /feature_run.sh + +RUN chmod +x /cp_pkg.sh + +CMD ["/cp_pkg.sh"] diff --git a/repo/features/brahmaputra/make_odl.sh b/repo/features/brahmaputra/make_odl.sh new file mode 100644 index 00000000..32d5f6e0 --- /dev/null +++ b/repo/features/brahmaputra/make_odl.sh @@ -0,0 +1,18 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +curl --connect-timeout $TIMEOUT -o /odl.tar.gz $PACKAGE_URL/odl.tar.gz + + diff --git a/repo/features/brahmaputra/make_opencon-trail.sh b/repo/features/brahmaputra/make_opencon-trail.sh new file mode 100644 index 00000000..b68fa3c8 --- /dev/null +++ b/repo/features/brahmaputra/make_opencon-trail.sh @@ -0,0 +1,20 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +for i in open-contrail.tar.gz; do + curl --connect-timeout $TIMEOUT -o /$i $PACKAGE_URL/$i +done + + diff --git a/repo/features/colorado/make_kvmfornfv.sh b/repo/features/colorado/make_kvmfornfv.sh new file mode 100644 index 00000000..734083a6 --- /dev/null +++ b/repo/features/colorado/make_kvmfornfv.sh @@ -0,0 +1,65 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TEMP_DIR=/work/repo/temp +DST_DIR=/work/repo/packages/kvmfornfv/ +export KVMFORNFV=${kvmfornfv:-https://gerrit.opnfv.org/gerrit/p/kvmfornfv.git} + + +function prepare() +{ + sudo apt-get install -y bc libtool libglib2.0-dev autoconf automake make flex bison + mkdir -p $TEMP_DIR + mkdir -p $DST_DIR + + if [ "git ls-remote $KVMFORNFV" ]; + then + git clone $KVMFORNFV $TEMP_DIR/kvmfornfv + mkdir -p $TEMP_DIR/kvmfornfv/build/{boot,usr} + fi +} + +function make_kernel() +{ + cd $TEMP_DIR/kvmfornfv/kernel + cp arch/x86/configs/opnfv.config .config + make -j8 + make -j8 modules + make INSTALL_PATH=$TEMP_DIR/kvmfornfv/build/boot install + make INSTALL_MOD_PATH=$TEMP_DIR/kvmfornfv/build modules_install +} + +function make_qemu() +{ + mkdir -p $TEMP_DIR/kvmfornfv/qemu/build + cd $TEMP_DIR/kvmfornfv/qemu/build + ../configure --prefix=$TEMP_DIR/kvmfornfv/build/usr --enable-system --enable-kvm + make -j8 + make install +} + +function make_kvmfornfv() +{ + pushd . + + prepare + make_kernel + make_qemu + + tar -czf /kvmfornfv.tar.gz \ + -C $TEMP_DIR/kvmfornfv/build . + cd - + + popd +} + +make_kvmfornfv + diff --git a/repo/features/colorado/make_moon.sh b/repo/features/colorado/make_moon.sh new file mode 100644 index 00000000..f484d8ef --- /dev/null +++ b/repo/features/colorado/make_moon.sh @@ -0,0 +1,20 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +for i in moon.tar.gz; do + curl --connect-timeout $TIMEOUT -o /$i $PACKAGE_URL/$i +done + + diff --git a/repo/features/colorado/make_odl.sh b/repo/features/colorado/make_odl.sh new file mode 100644 index 00000000..32d5f6e0 --- /dev/null +++ b/repo/features/colorado/make_odl.sh @@ -0,0 +1,18 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +curl --connect-timeout $TIMEOUT -o /odl.tar.gz $PACKAGE_URL/odl.tar.gz + + diff --git a/repo/features/colorado/make_onos.sh b/repo/features/colorado/make_onos.sh new file mode 100644 index 00000000..ede941e9 --- /dev/null +++ b/repo/features/colorado/make_onos.sh @@ -0,0 +1,18 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +curl --connect-timeout $TIMEOUT -o /onos.tar.gz $PACKAGE_URL/onos.tar.gz + + diff --git a/repo/features/colorado/make_opencon-trail.sh b/repo/features/colorado/make_opencon-trail.sh new file mode 100644 index 00000000..b68fa3c8 --- /dev/null +++ b/repo/features/colorado/make_opencon-trail.sh @@ -0,0 +1,20 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +for i in open-contrail.tar.gz; do + curl --connect-timeout $TIMEOUT -o /$i $PACKAGE_URL/$i +done + + diff --git a/repo/features/danube/make_moon.sh b/repo/features/danube/make_moon.sh new file mode 100644 index 00000000..f484d8ef --- /dev/null +++ b/repo/features/danube/make_moon.sh @@ -0,0 +1,20 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +for i in moon.tar.gz; do + curl --connect-timeout $TIMEOUT -o /$i $PACKAGE_URL/$i +done + + diff --git a/repo/features/danube/make_odl.sh b/repo/features/danube/make_odl.sh new file mode 100644 index 00000000..6a9afb9e --- /dev/null +++ b/repo/features/danube/make_odl.sh @@ -0,0 +1,22 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +mkdir -p odl + +curl --connect-timeout $TIMEOUT -o /odl/distribution-karaf-0.5.0-Boron.tar.gz $PACKAGE_URL/distribution-karaf-0.5.0-Boron.tar.gz + +tar -zcvf odl.tar.gz /odl + + diff --git a/repo/features/danube/make_onos.sh b/repo/features/danube/make_onos.sh new file mode 100644 index 00000000..ede941e9 --- /dev/null +++ b/repo/features/danube/make_onos.sh @@ -0,0 +1,18 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +curl --connect-timeout $TIMEOUT -o /onos.tar.gz $PACKAGE_URL/onos.tar.gz + + diff --git a/repo/features/danube/make_opencon-trail.sh b/repo/features/danube/make_opencon-trail.sh new file mode 100644 index 00000000..b68fa3c8 --- /dev/null +++ b/repo/features/danube/make_opencon-trail.sh @@ -0,0 +1,20 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +PACKAGE_URL=http://205.177.226.237:9999 + +for i in open-contrail.tar.gz; do + curl --connect-timeout $TIMEOUT -o /$i $PACKAGE_URL/$i +done + + -- cgit 1.2.3-korg