blob: 3f8d3cb70e70bf1d33fb2dc38d3122e01c3a6e42 [file] [log] [blame]
Jeremy Mordkofffefe34d2016-09-14 20:44:29 -04001#
2# Copyright 2016 RIFT.IO Inc
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Author(s): Jeremy Mordkoff
17# Creation Date: 8 Sep 2016 -- cloned from BUILD.sh and adapated for Ubuntu
18#
19#
20
21# BUILD_UB.sh
22#
23# This is a top-level build script for RIFT.io
24#
25# args none
26#
27# dependencies -- requires sudo rights
28
29
30# ARGS
31
32PLATFORM_REPOSITORY=${1:-OSM}
33PLATFORM_VERSION=${2:-4.3.1.0.49164}
34
35# must be run from the top of a workspace
36cd $(dirname $0)
37
38# inside RIFT.io this is an NFS mount
39# so just to be safe
40test -h /usr/rift && sudo rm -f /usr/rift
41
42# enable the right repos
43curl http://repos.riftio.com/public/xenial-riftware-public-key | sudo apt-key add -
44sudo curl -o /etc/apt/sources.list.d/${PLATFORM_REPOSITORY}.list http://buildtracker.riftio.com/repo_file/ub16/${PLATFORM_REPOSITORY}/
45sudo apt-get update
46
47# and install the tools
48sudo apt remove -y rw.toolchain-rwbase tcpdump
49sudo apt-get install -y rw.tools-container-tools rw.tools-scripts python
50
51# enable the OSM repository hosted by RIFT.io
52# this contains the RIFT platform code and tools
53# and install of the packages required to build and run
54# this module
55sudo -H /usr/rift/container_tools/mkcontainer --modes build --modes ext --repo ${PLATFORM_REPOSITORY}
56
57
58
59# install the RIFT platform code:
60temp=$(mktemp -d /tmp/rw.XXX)
61pushd $temp
62
63apt-get download rw.toolchain-rwbase=${PLATFORM_VERSION} \
64 rw.toolchain-rwtoolchain=${PLATFORM_VERSION} \
65 rw.core.mgmt-mgmt=${PLATFORM_VERSION} \
66 rw.core.util-util=${PLATFORM_VERSION} \
67 rw.core.rwvx-rwvx=${PLATFORM_VERSION} \
68 rw.core.rwvx-rwdts=${PLATFORM_VERSION} \
69 rw.automation.core-RWAUTO=${PLATFORM_VERSION} \
70 rw.core.rwvx-rwha-1.0=${PLATFORM_VERSION}
71
72sudo dpkg -i --force-overwrite *deb
73
74
75popd
76rm -rf $temp
77
78# this file gets in the way of the one generated by the build
79sudo rm -f /usr/rift/usr/lib/libmano_yang_gen.so
80
81
82sudo chmod 777 /usr/rift /usr/rift/usr/share
83
84# install some base files used to create VNFs
85test -d /usr/rift/images || mkdir /usr/rift/images
86for file in Fedora-x86_64-20-20131211.1-sda-ping.qcow2 Fedora-x86_64-20-20131211.1-sda-pong.qcow2 Fedora-x86_64-20-20131211.1-sda.qcow2; do
87 test -f /usr/rift/images/$file || curl -o /usr/rift/images/$file http://repo.riftio.com/releases/open.riftio.com/4.3.1/$file
88done
89
90####### If you are re-building, you just need to run
91# these two steps
92make -j16
93sudo make install
94
95# you can now clone and build the UI using just make && sudo make install
96# or you can run without the UI, e.g.
97# note to start the RIFT.io UI please run
98echo 'sudo -H /usr/rift/rift-shell -r -i /usr/rift -a /usr/rift/.artifacts -- ./demos/launchpad.py --use-xml-mode --no-ui'