ENV OSMNBI_LOG_FILE /app/log/nbi.log
ENV OSMNBI_LOG_LEVEL DEBUG
+HEALTHCHECK --interval=5s --timeout=2s --retries=12 \
+ CMD curl -k https://localhost:9999/osm/ | grep Welcome || exit 1
+
# Run app.py when the container launches
CMD ["python3", "/usr/lib/python3/dist-packages/osm_nbi/nbi.py"]
booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_PASS'),
booleanParam(defaultValue: false, description: '', name: 'DO_STAGE_4'),
booleanParam(defaultValue: true, description: '', name: 'DO_BUILD'),
- booleanParam(defaultValue: false, description: '', name: 'DO_INSTALL'),
- booleanParam(defaultValue: false, description: '', name: 'DO_SMOKE'),
+ booleanParam(defaultValue: true, description: '', name: 'DO_INSTALL'),
+ booleanParam(defaultValue: true, description: '', name: 'DO_SMOKE'),
booleanParam(defaultValue: false, description: '', name: 'SAVE_ARTIFACTS_OVERRIDE'),
])
])
"""
}
+def run_systest(stackName,tagName,testName) {
+ sh """
+ tempdir=$(mktemp -d)
+ docker run -ti --network net${stackName} -v $tempdir:/usr/share/osm-devops/systest/reports osm/osmclient:${tagName} make -C /usr/share/osm-devops/systest ${testName}
+ cp $tempdir/*.xml .
+ """
+ junit '*.xml'
+}
+
node("${params.NODE}") {
sh 'env'
}
if ( params.DO_SMOKE ) {
+ stage("OSM Health") {
+ sh "installers/osm_health.sh -s ${container_name}"
+ }
stage("Smoke") {
- ci_helper.systest_run(container_name, 'smoke')
- junit '*.xml'
+ run_systest(container_name,container_name,"smoke")
}
}