This group is locked. No changes can be made to the group while it is locked.
Re: [integration-dev] running tempest tests
Luis Gomez
Forgot to mention you have to replace ${DISTRIBUTION} with karaf so the script will look like: # Extract the BUNDLEVERSION from the pom.xml BUNDLEVERSION=`xpath pom.xml '/project/version/text()' 2> /dev/null` echo "Bundle version is ${BUNDLEVERSION}” # Acquire the timestamp information from maven-metadata.xml wget ${NEXUSPATH}/${BUNDLEVERSION}/maven-metadata.xml TIMESTAMP=`xpath maven-metadata.xml "//snapshotVersion[extension='zip'][1]/value/text()" 2>/dev/null` echo "Nexus timestamp is ${TIMESTAMP}” BUNDLEFOLDER=“distribution-karaf-${BUNDLEVERSION}" BUNDLE=“distribution-karaf-${TIMESTAMP}.zip" BUNDLEURL="${NEXUSPATH}/${BUNDLEVERSION}/${BUNDLE}” echo "Distribution bundle URL is ${BUNDLEURL}” echo "Distribution bundle is ${BUNDLE}” echo "Distribution folder is ${BUNDLEFOLDER}"
|
|