diff options
author | cluckenbaugh <cl5597@att.com> | 2021-02-11 18:26:30 -0500 |
---|---|---|
committer | cluckenbaugh <cl5597@att.com> | 2021-02-17 17:45:30 -0500 |
commit | fffe41c078fa427f2a62035ee2d6cc5cd407238c (patch) | |
tree | cf4c5e7e78c2a5f2a1a9f9e84e67deb2d24b5bbf /mvn-phase-script.sh | |
parent | e8832b777811c0d154929dc10d6a60352cd37bd2 (diff) |
Seed policysync container code
For use by helm microservices to receive policy
Issue-ID: DCAEGEN2-2556
Change-Id: I2d9cb92ab480a90c63a9d8e6242848f7ca2df0f3
Signed-off-by: cluckenbaugh <cl5597@att.com>
Diffstat (limited to 'mvn-phase-script.sh')
-rwxr-xr-x | mvn-phase-script.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh index 0e9c8f4..71df21a 100755 --- a/mvn-phase-script.sh +++ b/mvn-phase-script.sh @@ -62,6 +62,27 @@ compile) ;; test) echo "==> test phase script" + case $MVN_PROJECT_MODULEID in + dcae-services-policy-sync) + set -e -x + CURDIR=$(pwd) + TOXINIS=$(find . -name "tox.ini") + for TOXINI in "${TOXINIS[@]}"; do + DIR=$(echo "$TOXINI" | rev | cut -f2- -d'/' | rev) + cd "${CURDIR}/${DIR}" + rm -rf ./venv-tox ./.tox + virtualenv ./venv-tox + source ./venv-tox/bin/activate + pip install pip==20.3.4 + pip install --upgrade argparse + pip install tox + pip freeze + tox + deactivate + rm -rf ./venv-tox ./.tox + done + ;; + esac ;; package) echo "==> package phase script" |