[DCAE] INFO.yaml update
[dcaegen2/platform.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
29
30 PROJECT_ROOT=$(dirname $0)
31
32 FQDN="${MVN_PROJECT_GROUPID}.${MVN_PROJECT_ARTIFACTID}"
33 if [ "$MVN_PROJECT_MODULEID" == "__" ]; then
34   MVN_PROJECT_MODULEID=""
35 fi
36
37 if [[ "$MVN_PROJECT_VERSION" == *SNAPSHOT ]]; then
38   echo "=> for SNAPSHOT artifact build"
39   MVN_DEPLOYMENT_TYPE='SNAPSHOT'
40 else
41   echo "=> for STAGING/RELEASE artifact build"
42   MVN_DEPLOYMENT_TYPE='STAGING'
43 fi
44 echo "MVN_DEPLOYMENT_TYPE is             [$MVN_DEPLOYMENT_TYPE]"
45
46
47 TIMESTAMP=$(date +%C%y%m%dT%H%M%S)
48
49 # expected environment variables
50 if [ -z "${MVN_NEXUSPROXY}" ]; then
51     echo "MVN_NEXUSPROXY environment variable not set.  Cannot proceed"
52     exit
53 fi
54 MVN_NEXUSPROXY_HOST=$(echo "$MVN_NEXUSPROXY" |cut -f3 -d'/' | cut -f1 -d':')
55 echo "=> Nexus Proxy at $MVN_NEXUSPROXY_HOST, $MVN_NEXUSPROXY"
56
57 if [ -z "$WORKSPACE" ]; then
58     WORKSPACE=$(pwd)
59 fi
60
61 if [ -z "$SETTINGS_FILE" ]; then
62     echo "SETTINGS_FILE environment variable not set.  Cannot proceed"
63     exit
64 fi
65    
66
67
68 # mvn phase in life cycle
69 MVN_PHASE="$2"
70
71
72 echo "MVN_PROJECT_MODULEID is            [$MVN_PROJECT_MODULEID]"
73 echo "MVN_PHASE is                       [$MVN_PHASE]"
74 echo "MVN_PROJECT_GROUPID is             [$MVN_PROJECT_GROUPID]"
75 echo "MVN_PROJECT_ARTIFACTID is          [$MVN_PROJECT_ARTIFACTID]"
76 echo "MVN_PROJECT_VERSION is             [$MVN_PROJECT_VERSION]"
77 echo "MVN_NEXUSPROXY is                  [$MVN_NEXUSPROXY]"
78 echo "MVN_RAWREPO_BASEURL_UPLOAD is      [$MVN_RAWREPO_BASEURL_UPLOAD]"
79 echo "MVN_RAWREPO_BASEURL_DOWNLOAD is    [$MVN_RAWREPO_BASEURL_DOWNLOAD]"
80 MVN_RAWREPO_HOST=$(echo "$MVN_RAWREPO_BASEURL_UPLOAD" | cut -f3 -d'/' |cut -f1 -d':')
81 echo "MVN_RAWREPO_HOST is                [$MVN_RAWREPO_HOST]"
82 echo "MVN_RAWREPO_SERVERID is            [$MVN_RAWREPO_SERVERID]"
83 echo "MVN_DOCKERREGISTRY_DAILY is        [$MVN_DOCKERREGISTRY_DAILY]"
84 echo "MVN_DOCKERREGISTRY_RELEASE is      [$MVN_DOCKERREGISTRY_RELEASE]"
85
86
87 source "${PROJECT_ROOT}"/mvn-phase-lib.sh 
88
89
90 # Customize the section below for each project
91 case $MVN_PHASE in
92 clean)
93   echo "==> clean phase script"
94   clean_templated_files
95   clean_tox_files
96   rm -rf ./venv-* ./*.wgn ./site
97   ;;
98 generate-sources)
99   echo "==> generate-sources phase script"
100   expand_templates
101   ;;
102 compile)
103   echo "==> compile phase script"
104   ;;
105 test)
106   echo "==> test phase script"
107   ;;
108 package)
109   echo "==> package phase script"
110   ;;
111 install)
112   echo "==> install phase script"
113   ;;
114 deploy)
115   echo "==> deploy phase script"
116   # below segments are example of how to deploy various artifacts
117   # copy the ones suitable for your repo, and remove the "if false" statement
118
119   # build docker image from Docker file (under root of repo) and push to registry
120   if  false ; then
121     build_and_push_docker
122   fi
123
124   # upload all yaml file under the root of repo
125   if  false ; then
126     upload_files_of_extension yaml
127   fi
128
129   if  false ; then
130     case $MVN_PROJECT_MODULEID in
131     bootstrap)
132       # build docker image from Docker file (under module dir) and push to registry
133       build_and_push_docker
134       ;;
135     scripts)
136       # upload all sh file under the root of module 
137       upload_files_of_extension sh
138       ;;
139     platformdoc)
140       CURDIR=$(pwd)
141       virtualenv ./venv-doc
142       source ./venv-doc/bin/activate
143       pip install --upgrade pip
144       pip install --upgrade mkdocs mkdocs-material
145       pip freeze
146
147       mkdocs build
148       build_and_push_docker
149       deactivate
150       rm -rf ./venv-doc
151
152       # build docker image from Docker file (under module dir) and push to registry
153       build_and_push_docker
154     ;;
155     *)
156       echo "====> unknown mvn project module"
157       ;;
158     esac
159   fi
160   ;;
161 *)
162   echo "==> unprocessed phase"
163   ;;
164 esac
165