blob: 289d11a30d25296b98f7768446dcacf638220c49 [file] [log] [blame]
Jeremy Mordkoff03156e32017-09-30 21:42:44 -04001#!/usr/bin/env bash
2#
3# Copyright 2016,2017 RIFT.IO Inc
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# Author(s): Jeremy Mordkoff, Lezz Giles
18# Creation Date: 08/29/2016
19#
20#
21
22# BUILD.sh
23#
24# This is a top-level build script for OSM SO or UI
25#
26# Arguments and options: use -h or --help
27#
28# dependencies -- requires sudo rights
29
30MODULE=UI
31
32# Defensive bash programming flags
33set -o errexit # Exit on any error
34trap 'echo ERROR: Command failed: \"$BASH_COMMAND\"' ERR
35set -o nounset # Expanding an unset variable is an error. Variables must be
36 # set before they can be used.
37
38###############################################################################
39# Options and arguments
40
41# There
42params="$(getopt -o h -l install,help --name "$0" -- "$@")"
43if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; exit 1 ; fi
44
45eval set -- $params
46
47installFromPackages=false
48
49while true; do
50 case "$1" in
51 --install) installFromPackages=true; shift;;
52 -h|--help)
53 echo
54 echo "NAME:"
55 echo " $0"
56 echo
57 echo "SYNOPSIS:"
58 echo " $0 -h|--help"
59 echo " $0 [--install] [PLATFORM_REPOSITORY] [PLATFORM_VERSION]"
60 echo
61 echo "DESCRIPTION:"
62 echo " Prepare current system to run $MODULE. By default, the system"
63 echo " is set up to support building $MODULE; optionally, "
64 echo " $MODULE can be installed from a Debian package repository."
65 echo
66 echo " --install: install $MODULE from package"
67 echo " PLATFORM_REPOSITORY (optional): name of the RIFT.ware repository."
68 echo " PLATFORM_VERSION (optional): version of the platform packages to be installed."
69 echo
70 exit 0;;
71 --) shift; break;;
72 *) echo "Not implemented: $1" >&2; exit 1;;
73 esac
74done
75
76# Turn this on after handling options, so the output doesn't get cluttered.
77set -x # Print commands before executing them
78
79###############################################################################
80# Set up repo and version
81
Jeremy Mordkoff8eb55792017-10-16 13:39:06 -040082PLATFORM_REPOSITORY=${1:-OSM3}
marchettim9d2bd282017-11-10 18:32:51 +020083PLATFORM_VERSION=${2:-5.2.0.2.72254}
Jeremy Mordkoff03156e32017-09-30 21:42:44 -040084
85###############################################################################
86# Main block
87
88# must be run from the top of a workspace
89cd $(dirname $0)
90
91# enable the right repos
92curl http://repos.riftio.com/public/xenial-riftware-public-key | sudo apt-key add -
93
94# always use the same file name so that updates will overwrite rather than enable a second repo
95sudo curl -o /etc/apt/sources.list.d/rift.list http://buildtracker.riftio.com/repo_file/ub16/${PLATFORM_REPOSITORY}/
96sudo apt-get update
97
98sudo apt install -y --allow-downgrades rw.tools-container-tools=${PLATFORM_VERSION} rw.tools-scripts=${PLATFORM_VERSION}
99
100if $installFromPackages; then
101
102 # Install module and platform from packages
103 sudo -H /usr/rift/container_tools/mkcontainer --modes $MODULE --repo ${PLATFORM_REPOSITORY} --rw-version ${PLATFORM_VERSION}
104
105else
106
107 # Install environment to build module
108 sudo -H /usr/rift/container_tools/mkcontainer --modes $MODULE-dev --repo ${PLATFORM_REPOSITORY} --rw-version ${PLATFORM_VERSION}
Jeremy Mordkoff3ae3b072017-10-17 19:27:49 -0400109 sudo -H apt install -y nodejs
110 sudo -H npm install -g forever
Jeremy Mordkoff03156e32017-09-30 21:42:44 -0400111
112 # Build and install module
113 make -j16
114 sudo make install
Jeremy Mordkoff03156e32017-09-30 21:42:44 -0400115
116fi
117
118if [[ $MODULE == SO ]]; then
119 echo "Creating Service ...."
120 sudo /usr/rift/bin/create_launchpad_service
121fi
122
123