Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 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 | |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 24 | echo "running script: [$0] for module [$1] at stage [$2]" |
| 25 | |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 26 | MVN_PROJECT_MODULEID="$1" |
| 27 | MVN_PHASE="$2" |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 28 | PROJECT_ROOT=$(dirname $0) |
| 29 | |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 30 | # expected environment variables |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 31 | if [ -z "${MVN_NEXUSPROXY}" ]; then |
| 32 | echo "MVN_NEXUSPROXY environment variable not set. Cannot proceed" |
Lusheng Ji | eab1675 | 2017-09-19 18:39:04 +0000 | [diff] [blame] | 33 | exit 1 |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 34 | fi |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 35 | if [ -z "$SETTINGS_FILE" ]; then |
| 36 | echo "SETTINGS_FILE environment variable not set. Cannot proceed" |
Lusheng Ji | eab1675 | 2017-09-19 18:39:04 +0000 | [diff] [blame] | 37 | exit 2 |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 38 | fi |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 39 | |
| 40 | |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 41 | |
| 42 | |
| 43 | source "${PROJECT_ROOT}"/mvn-phase-lib.sh |
| 44 | |
| 45 | |
| 46 | # Customize the section below for each project |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 47 | case $MVN_PHASE in |
| 48 | clean) |
| 49 | echo "==> clean phase script" |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 50 | clean_templated_files |
| 51 | clean_tox_files |
| 52 | rm -rf ./venv-* ./*.wgn ./site |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 53 | ;; |
| 54 | generate-sources) |
| 55 | echo "==> generate-sources phase script" |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 56 | expand_templates |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 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" |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 72 | case $MVN_PROJECT_MODULEID in |
| 73 | platformdoc) |
| 74 | set -x |
| 75 | CURDIR=$(pwd) |
| 76 | virtualenv ./venv-doc |
| 77 | source ./venv-doc/bin/activate |
Pratik Raj | 9dc682d | 2020-06-06 21:59:50 +0530 | [diff] [blame] | 78 | pip install --no-cache-dir --upgrade pip |
| 79 | pip install --no-cache-dir --upgrade 'mkdocs==0.16.3' mkdocs-material |
Lusheng Ji | 1694802 | 2017-09-11 23:38:09 +0000 | [diff] [blame] | 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 |
Lusheng Ji | 487c0cc | 2017-08-22 21:44:29 -0700 | [diff] [blame] | 94 | ;; |
| 95 | *) |
| 96 | echo "==> unprocessed phase" |
| 97 | ;; |
| 98 | esac |
| 99 | |