Lusheng Ji | c8bd891 | 2017-08-29 14:11:28 +0000 | [diff] [blame] | 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 | |
Lusheng Ji | efb1851 | 2017-09-11 18:14:56 +0000 | [diff] [blame] | 21 | set -ex |
| 22 | |
Lusheng Ji | c8bd891 | 2017-08-29 14:11:28 +0000 | [diff] [blame] | 23 | |
| 24 | echo "running script: [$0] for module [$1] at stage [$2]" |
| 25 | |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 26 | MVN_PROJECT_MODULEID="$1" |
Lusheng Ji | 98be143 | 2017-09-06 19:38:42 +0000 | [diff] [blame] | 27 | MVN_PHASE="$2" |
| 28 | |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 29 | |
Lusheng Ji | ab7883e | 2017-10-10 14:22:53 +0000 | [diff] [blame] | 30 | PROJECT_ROOT=$(dirname $0) |
| 31 | |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 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 |
Lusheng Ji | efb1851 | 2017-09-11 18:14:56 +0000 | [diff] [blame] | 44 | echo "MVN_DEPLOYMENT_TYPE is [$MVN_DEPLOYMENT_TYPE]" |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 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 |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 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 | |
Lusheng Ji | ab7883e | 2017-10-10 14:22:53 +0000 | [diff] [blame] | 61 | if [ -z "$SETTINGS_FILE" ]; then |
| 62 | echo "SETTINGS_FILE environment variable not set. Cannot proceed" |
| 63 | exit |
| 64 | fi |
| 65 | |
| 66 | |
| 67 | |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 68 | # mvn phase in life cycle |
| 69 | MVN_PHASE="$2" |
| 70 | |
| 71 | |
Lusheng Ji | 98be143 | 2017-09-06 19:38:42 +0000 | [diff] [blame] | 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]" |
Lusheng Ji | ab7883e | 2017-10-10 14:22:53 +0000 | [diff] [blame] | 83 | echo "MVN_DOCKERREGISTRY_SNAPSHOT is [$MVN_DOCKERREGISTRY_SNAPSHOT]" |
Lusheng Ji | 98be143 | 2017-09-06 19:38:42 +0000 | [diff] [blame] | 84 | echo "MVN_DOCKERREGISTRY_RELEASE is [$MVN_DOCKERREGISTRY_RELEASE]" |
Lusheng Ji | ab7883e | 2017-10-10 14:22:53 +0000 | [diff] [blame] | 85 | echo "MVN_DOCKERREGISTRY_PUBLIC is [$MVN_DOCKERREGISTRY_PUBLIC]" |
Tony Hansen | ffa416d | 2017-10-24 19:35:57 +0000 | [diff] [blame] | 86 | echo "HOME is [$HOME]" |
| 87 | echo "PROJECT_ROOT is [$PROJECT_ROOT]" |
Lusheng Ji | efb1851 | 2017-09-11 18:14:56 +0000 | [diff] [blame] | 88 | |
Lusheng Ji | ab7883e | 2017-10-10 14:22:53 +0000 | [diff] [blame] | 89 | source "${PROJECT_ROOT}"/mvn-phase-lib.sh |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 90 | |
| 91 | |
Lusheng Ji | efb1851 | 2017-09-11 18:14:56 +0000 | [diff] [blame] | 92 | # Customize the section below for each project |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 93 | case $MVN_PHASE in |
| 94 | clean) |
| 95 | echo "==> clean phase script" |
Lusheng Ji | efb1851 | 2017-09-11 18:14:56 +0000 | [diff] [blame] | 96 | clean_templated_files |
Lusheng Ji | ab7883e | 2017-10-10 14:22:53 +0000 | [diff] [blame] | 97 | clean_tox_files |
| 98 | rm -rf ./venv-* ./*.wgn ./site |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 99 | ;; |
| 100 | generate-sources) |
| 101 | echo "==> generate-sources phase script" |
| 102 | expand_templates |
| 103 | ;; |
| 104 | compile) |
| 105 | echo "==> compile phase script" |
| 106 | ;; |
| 107 | test) |
| 108 | echo "==> test phase script" |
Tony Hansen | 1d01367 | 2017-10-06 21:01:05 +0000 | [diff] [blame] | 109 | test_templates |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 110 | ;; |
| 111 | package) |
| 112 | echo "==> package phase script" |
Lusheng Ji | 4365861 | 2017-09-08 19:12:45 +0000 | [diff] [blame] | 113 | ;; |
| 114 | install) |
| 115 | echo "==> install phase script" |
| 116 | ;; |
| 117 | deploy) |
| 118 | echo "==> deploy phase script" |
Lusheng Ji | b004cbc | 2017-10-13 15:59:06 +0000 | [diff] [blame] | 119 | if [ -z "$MVN_PROJECT_MODULEID" ]; then |
| 120 | upload_files_of_extension yaml |
| 121 | else |
| 122 | upload_files_of_extension yaml "$MVN_PROJECT_MODULEID" |
| 123 | fi |
Lusheng Ji | c8bd891 | 2017-08-29 14:11:28 +0000 | [diff] [blame] | 124 | ;; |
| 125 | *) |
| 126 | echo "==> unprocessed phase" |
| 127 | ;; |
| 128 | esac |
| 129 | |