bf0396bed6d7466492eab7d03aa61754766153d6
[dcaegen2/platform/cli.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
22 set -ex
23
24
25 echo "running script: [$0] for module [$1] at stage [$2]"
26
27 MVN_PROJECT_MODULEID="$1"
28 MVN_PHASE="$2"
29 PROJECT_ROOT=$(dirname $0)
30
31 # expected environment variables
32 if [ -z "${MVN_NEXUSPROXY}" ]; then
33     echo "MVN_NEXUSPROXY environment variable not set.  Cannot proceed"
34     exit 1
35 fi
36 if [ -z "$SETTINGS_FILE" ]; then
37     echo "SETTINGS_FILE environment variable not set.  Cannot proceed"
38     exit 2
39 fi
40
41
42 if ! wget -O ${PROJECT_ROOT}/mvn-phase-lib.sh \
43   "$MVN_RAWREPO_BASEURL_DOWNLOAD"/org.onap.dcaegen2.utils/R2/scripts/mvn-phase-lib.sh; then
44   echo "Fail to download mvn-phase-lib.sh"
45   exit 1
46 fi
47 source "${PROJECT_ROOT}"/mvn-phase-lib.sh
48
49
50 # This is the base for where "deploy" will upload
51 # MVN_NEXUSPROXY is set in the pom.xml
52 REPO=$MVN_NEXUSPROXY/content/sites/raw/$MVN_PROJECT_GROUPID
53
54 TIMESTAMP=$(date +%C%y%m%dT%H%M%S)
55 export BUILD_NUMBER="${TIMESTAMP}"
56
57
58 shift 2
59
60 case $MVN_PHASE in
61 clean)
62   echo "==> clean phase script"
63   clean_templated_files
64   clean_tox_files
65   rm -rf ./venv-* ./*.wgn ./site ./coverage.xml ./xunit-results.xml
66   ;;
67 generate-sources)
68   echo "==> generate-sources phase script"
69   expand_templates
70   ;;
71 compile)
72   echo "==> compile phase script"
73   ;;
74 test)
75   echo "==> test phase script"
76   set +e
77   case $MVN_PROJECT_MODULEID in
78   dcae-cli)
79     run_tox_test
80     ;;
81   *)
82     ;;
83   esac
84   set -e
85   ;;
86 package)
87   echo "==> package phase script"
88   ;;
89 install)
90   echo "==> install phase script"
91   ;;
92 deploy)
93   echo "==> deploy phase script"
94   case $MVN_PROJECT_MODULEID in
95   dcae-cli)
96     ;;
97   component-json-schemas)
98     JSON_FILES_WITH_PATH=$(find . -name *json)
99     for JSON_FILE in $JSON_FILES_WITH_PATH; do
100       upload_raw_file "$JSON_FILE"
101     done
102     ;;
103   *)
104     #generate_pypirc_then_publish
105     ;;
106   esac
107   ;;
108 *)
109   echo "==> unprocessed phase"
110   ;;
111 esac
112