From cb862560f21f6cd376a4b3f9fb74615f410f3f29 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Tue, 4 May 2021 13:56:25 -0400 Subject: Update versions for Aluminum SR3 Update versions for Aluminum SR3. Updated CSIT scripts to add workaround for issue with karaf client not exiting. Client exits on end of file (^d), so need it to see end of file in input by using it in a pipeline, with empty string as stdin. Issue-ID: CCSDK-3285 Signed-off-by: Dan Timoney Change-Id: Ic40c2cd138f8f4888aa83dc75ccc1a818d4605b3 --- csit/plans/healthcheck/setup.sh | 8 ++++---- dependencies/pom.xml | 11 ++++++++++- odlsli/odlsli-alpine/pom.xml | 10 +++++----- opendaylight/aluminum/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 21 insertions(+), 12 deletions(-) diff --git a/csit/plans/healthcheck/setup.sh b/csit/plans/healthcheck/setup.sh index 327aba21..dddecbf0 100644 --- a/csit/plans/healthcheck/setup.sh +++ b/csit/plans/healthcheck/setup.sh @@ -77,12 +77,12 @@ if [ "$TIME" -ge "$TIME_OUT" ]; then exit 1; fi -num_bundles=$(docker exec -i ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d' ' -f1) +num_bundles=$(docker exec -i ccsdk_odlsli_container sh -c "echo '' | /opt/opendaylight/current/bin/client bundle:list" | tail -1 | cut -d' ' -f1) if [ "$num_bundles" -ge 333 ]; then - num_bundles=$(docker exec -i ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d' ' -f1) - num_failed_bundles=$(docker exec -i ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l) - failed_bundles=$(docker exec -i ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure) + num_bundles=$(docker exec -i ccsdk_odlsli_container sh -c "echo '' | /opt/opendaylight/current/bin/client bundle:list" | tail -1 | cut -d' ' -f1) + num_failed_bundles=$(docker exec -i ccsdk_odlsli_container sh -c "echo '' | /opt/opendaylight/current/bin/client bundle:list" | grep Failure | wc -l) + failed_bundles=$(docker exec -i ccsdk_odlsli_container sh -c "echo '' |/opt/opendaylight/current/bin/client bundle:list" | grep Failure) echo There is/are $num_failed_bundles failed bundles out of $num_bundles installed bundles. fi diff --git a/dependencies/pom.xml b/dependencies/pom.xml index 8a5296c2..1a775fb3 100755 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -31,7 +31,7 @@ org.onap.ccsdk.parent dependencies-odl-bom - 2.1.2 + 2.1.4-SNAPSHOT import pom @@ -73,6 +73,15 @@ com.google.code.findbugs annotations + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + 1.3 + com.jayway.jsonpath json-path diff --git a/odlsli/odlsli-alpine/pom.xml b/odlsli/odlsli-alpine/pom.xml index 419845f6..662788d2 100644 --- a/odlsli/odlsli-alpine/pom.xml +++ b/odlsli/odlsli-alpine/pom.xml @@ -38,13 +38,13 @@ ccsdk-sli-core-all,ccsdk-sli-adaptors-all,ccsdk-sli-northbound-all,ccsdk-sli-plugins-all,ccsdk-features-all ${odl.features.extra},${ccsdk.odl.features} - 1.1.4 - 1.2.2 - ${ccsdk.sli.version} + 1.1.5-SNAPSHOT + 1.2.3-SNAPSHOT + ${ccsdk.sli.version} ${ccsdk.sli.version} ${ccsdk.sli.version} - ${ccsdk.sli.version} - 1.1.4 + ${ccsdk.sli.version} + 1.1.5-SNAPSHOT true diff --git a/opendaylight/aluminum/pom.xml b/opendaylight/aluminum/pom.xml index 85579b1a..bb4759b1 100644 --- a/opendaylight/aluminum/pom.xml +++ b/opendaylight/aluminum/pom.xml @@ -19,7 +19,7 @@ - 0.13.1 + 0.13.3 diff --git a/pom.xml b/pom.xml index a6cfc995..11493d59 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.onap.ccsdk.parent oparent - 2.1.3 + 2.1.4 org.onap.ccsdk.distribution -- cgit 1.2.3-korg