Fix doc build warnings
[dcaegen2.git] / mvn-phase-script.sh
1 #!/bin/bash
2
3 # ================================================================================
4 # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 #
19 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
20
21 set -ex
22
23
24 echo "running script: [$0] for module [$1] at stage [$2]"
25
26 MVN_PROJECT_MODULEID="$1"
27 MVN_PHASE="$2"
28 PROJECT_ROOT=$(dirname $0)
29
30 # expected environment variables
31 if [ -z "${MVN_NEXUSPROXY}" ]; then
32     echo "MVN_NEXUSPROXY environment variable not set.  Cannot proceed"
33     exit 1
34 fi
35 if [ -z "$SETTINGS_FILE" ]; then
36     echo "SETTINGS_FILE environment variable not set.  Cannot proceed"
37     exit 2
38 fi
39
40
41
42
43 source "${PROJECT_ROOT}"/mvn-phase-lib.sh 
44
45
46 # Customize the section below for each project
47 case $MVN_PHASE in
48 clean)
49   echo "==> clean phase script"
50   clean_templated_files
51   clean_tox_files
52   rm -rf ./venv-* ./*.wgn ./site
53   ;;
54 generate-sources)
55   echo "==> generate-sources phase script"
56   expand_templates
57   ;;
58 compile)
59   echo "==> compile phase script"
60   ;;
61 test)
62   echo "==> test phase script"
63   ;;
64 package)
65   echo "==> package phase script"
66   ;;
67 install)
68   echo "==> install phase script"
69   ;;
70 deploy)
71   echo "==> deploy phase script"
72   case $MVN_PROJECT_MODULEID in
73   platformdoc)
74     set -x
75     CURDIR=$(pwd)
76     virtualenv ./venv-doc
77     source ./venv-doc/bin/activate
78     pip install --upgrade pip
79     pip install --upgrade 'mkdocs==0.16.3' mkdocs-material
80     pip freeze
81
82     mkdocs build
83     build_and_push_docker
84     deactivate
85     rm -rf ./venv-doc
86
87     # build docker image from Docker file (under module dir) and push to registry
88     build_and_push_docker
89     ;;
90   *)
91     echo "====> unknown mvn project module"
92     ;;
93   esac
94   ;;
95 *)
96   echo "==> unprocessed phase"
97   ;;
98 esac
99