Merge "Making release test job more generic and hardening the deploy script to accept...
[releng/builder.git] / jjb / integration / include-raw-integration-deploy-controller-offline.sh
1 # Create a script to run controller inside a dynamic jenkins slave
2 DISTRIBUTION="karaf"
3 CONTROLLERFEATURES="odl-integration-compatible-with-all"
4 CONTROLLERMEM="3072m"
5
6 if [ ${BUNDLEURL} == 'last' ]; then
7     NEXUSPATH="https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/org/opendaylight/integration/distribution-${DISTRIBUTION}"
8     # Extract the BUNDLEVERSION from the pom.xml
9     BUNDLEVERSION=`xpath pom.xml '/project/version/text()' 2> /dev/null`
10     echo "Bundle version is ${BUNDLEVERSION}"
11     # Acquire the timestamp information from maven-metadata.xml
12     wget ${NEXUSPATH}/${BUNDLEVERSION}/maven-metadata.xml
13     TIMESTAMP=`xpath maven-metadata.xml "//snapshotVersion[extension='zip'][1]/value/text()" 2>/dev/null`
14     echo "Nexus timestamp is ${TIMESTAMP}"
15     BUNDLEFOLDER="distribution-${DISTRIBUTION}-${BUNDLEVERSION}"
16     BUNDLE="distribution-${DISTRIBUTION}-${TIMESTAMP}.zip"
17     BUNDLEURL="${NEXUSPATH}/${BUNDLEVERSION}/${BUNDLE}"
18 else
19     BUNDLE="$(echo ${BUNDLEURL} | awk -F '/' '{ print $(NF) }')"
20     echo "Finding out Bundle folder..."
21     wget --no-verbose  ${BUNDLEURL}
22     BUNDLEFOLDER="$(unzip -qql ${BUNDLE} | head -n1 | tr -s ' ' | cut -d' ' -f5- | rev | cut -c 2- | rev)"
23     rm ${BUNDLE}
24 fi
25
26 echo "Distribution bundle URL is ${BUNDLEURL}"
27 echo "Distribution bundle is ${BUNDLE}"
28 echo "Distribution folder is ${BUNDLEFOLDER}"
29
30 echo "Downloading the distribution from ${BUNDLEURL}"
31 wget --no-verbose  ${BUNDLEURL}
32
33 echo "Extracting the new controller..."
34 unzip -q ${BUNDLE}
35
36 echo "Configuring the startup features..."
37 cd ${BUNDLEFOLDER}/etc
38 CFG=org.apache.karaf.features.cfg
39 cp ${CFG} ${CFG}.bak
40 cat ${CFG}.bak | sed "s/^featuresBoot=.*/featuresBoot=config,standard,region,package,kar,ssh,management,${CONTROLLERFEATURES}/" > ${CFG}.1
41 cat ${CFG}.1 | sed "s%mvn:org.opendaylight.integration/features-integration-index/${BUNDLEVERSION}/xml/features%mvn:org.opendaylight.integration/features-integration-index/${BUNDLEVERSION}/xml/features,mvn:org.opendaylight.integration/features-integration-test/${BUNDLEVERSION}/xml/features%" > ${CFG}
42 cat ${CFG}
43
44 echo "Configuring the log..."
45 LOG=org.ops4j.pax.logging.cfg
46 cp ${LOG} ${LOG}.bak
47 cat ${LOG}.bak | sed 's/log4j.appender.out.maxFileSize=1MB/log4j.appender.out.maxFileSize=20MB/' > ${LOG}
48 cat ${LOG}
49
50 echo "Configure the repos..."
51 REPO=org.ops4j.pax.url.mvn.cfg
52 cp ${REPO} ${REPO}.bak
53 cat ${REPO}.bak | sed '/http/d' | sed '$s/...$//'> ${REPO}
54 cat ${REPO}
55
56 echo "Configure max memory..."
57 MEM=setenv
58 cd ../bin
59 cp ${MEM} ${MEM}.bak
60 cat ${MEM}.bak | sed 's/JAVA_MAX_MEM="2048m"/JAVA_MAX_MEM="${CONTROLLERMEM}"/' > ${MEM}
61 cat ${MEM}
62
63 echo "Starting controller..."
64 ./start &
65
66 echo "sleeping for 20 seconds..."
67 sleep 20
68
69 echo "Check OSGi bundles..."
70 ./client "feature:install ${CONTROLLERFEATURES}" || echo $? > ${WORKSPACE}/error.txt
71
72 echo "Fetching Karaf log"
73 cd ${WORKSPACE}
74 cp ${BUNDLEFOLDER}/data/log/karaf.log .
75
76 echo "Exit with error"
77 if [ `cat error.txt` -ne 0 ]; then
78     echo "Failed to deploy offline"
79     exit 1
80 fi
81
82 # vim: ts=4 sw=4 sts=4 et ft=sh :
83