blob: ca51fef374b39222d60e4919ed16a4d16adfdaf9 [file] [log] [blame]
Zack Williamsda8a5d82017-09-08 12:45:14 -07001#!/usr/bin/env bash
2
3# Copyright 2017-present Open Networking Foundation
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
Zack Williams6c78f912018-06-21 10:56:24 -070017set -e -o pipefail
18
Zack Williamsda8a5d82017-09-08 12:45:14 -070019BASEDIR=$(pwd)
20VENVDIR=venv-xosdocs
21
22# create venv if it's not yet there
23if [ ! -d "$BASEDIR/$VENVDIR" ]; then
Zack Williams6c78f912018-06-21 10:56:24 -070024 echo "Setting up virtualenv for XOS Swagger Docs"
25 virtualenv -q $BASEDIR/$VENVDIR --no-site-packages
Zack Williams67142162019-03-06 14:01:32 -070026 source $BASEDIR/$VENVDIR/bin/activate
Zack Williams6c78f912018-06-21 10:56:24 -070027 pip install --upgrade pip
28 echo "Virtualenv created."
Zack Williamsda8a5d82017-09-08 12:45:14 -070029fi
30
31# activate the virtual env
32if [ ! $VIRTUAL_ENV ]; then
Zack Williams6c78f912018-06-21 10:56:24 -070033 source $BASEDIR/$VENVDIR/bin/activate
34 echo "Virtualenv activated."
Zack Williamsda8a5d82017-09-08 12:45:14 -070035fi
36
37# install pip packages
38pip install -e $BASEDIR/$VENVDIR/../../lib/xos-genx