Update DCAE Committer in INFO.yaml
[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 set -e
43 RELEASE_TAG=${MVN_RELEASE_TAG:-R6}
44 if [ "$RELEASE_TAG" != "R1" ]; then
45   RELEASE_TAGGED_DIR="${RELEASE_TAG}/"
46 else
47   RELEASE_TAGGED_DIR="releases"
48 fi
49 if ! wget -O ${PROJECT_ROOT}/mvn-phase-lib.sh \
50   "$MVN_RAWREPO_BASEURL_DOWNLOAD"/org.onap.dcaegen2.utils/${RELEASE_TAGGED_DIR}scripts/mvn-phase-lib.sh; then
51   echo "Fail to download mvn-phase-lib.sh"
52   exit 1
53 fi
54 source "${PROJECT_ROOT}"/mvn-phase-lib.sh
55
56
57 # This is the base for where "deploy" will upload
58 # MVN_NEXUSPROXY is set in the pom.xml
59 REPO=$MVN_NEXUSPROXY/content/sites/raw/$MVN_PROJECT_GROUPID
60
61 TIMESTAMP=$(date +%C%y%m%dT%H%M%S)
62 export BUILD_NUMBER="${TIMESTAMP}"
63
64
65 shift 2
66
67 case $MVN_PHASE in
68 clean)
69   echo "==> clean phase script"
70   clean_templated_files
71   clean_tox_files
72   rm -rf ./venv-* ./*.wgn ./site ./coverage.xml ./xunit-results.xml
73   ;;
74 generate-sources)
75   echo "==> generate-sources phase script"
76   expand_templates
77   ;;
78 compile)
79   echo "==> compile phase script"
80   ;;
81 test)
82   echo "==> test phase script"
83   set +e
84   case $MVN_PROJECT_MODULEID in
85   dcae-cli)
86     run_tox_test
87     ;;
88   *)
89     ;;
90   esac
91   set -e
92   ;;
93 package)
94   echo "==> package phase script"
95   ;;
96 install)
97   echo "==> install phase script"
98   ;;
99 deploy)
100   echo "==> deploy phase script"
101   case $MVN_PROJECT_MODULEID in
102   dcae-cli)
103     ;;
104   component-json-schemas)
105     JSON_FILES_WITH_PATH=$(find . -name *json)
106     for JSON_FILE in $JSON_FILES_WITH_PATH; do
107       upload_raw_file "$JSON_FILE"
108     done
109     ;;
110   *)
111     #generate_pypirc_then_publish
112     ;;
113   esac
114   ;;
115 *)
116   echo "==> unprocessed phase"
117   ;;
118 esac
119