X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fci-pipelines%2Fci_stage_3.groovy;h=6c034e28c637fecd315e6d745e63cab8a753db1a;hb=c889e12242099c0b78939af8986308940aab9ad1;hp=29b0e0b87349283ec478cff82900990bdcd471bb;hpb=700082a79606e71761694b110865753e5eda2c53;p=osm%2Fdevops.git diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 29b0e0b8..6c034e28 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -101,6 +101,11 @@ def run_robot_systest(stackName,tagName,testName,envfile=null,kubeconfig=null,cl ]) } +def archive_logs(stackName) { + sh "docker service ls |grep \"${stackname}\"| awk '{print \$2}'| xargs -iy docker service logs y --timestamps > containers_logs.txt 2>&1" + archiveArtifacts artifacts: 'containers_logs.txt' +} + node("${params.NODE}") { sh 'env' @@ -315,7 +320,8 @@ node("${params.NODE}") { } //else { run_systest(container_name,container_name,"openstack_stage_4",params.HIVE_VIM_1) //} - + // Archive logs to containers_logs.txt + archive_logs(container_name) if ( ! currentBuild.result.equals('UNSTABLE') && ! currentBuild.result.equals('FAILURE')) { stage_archive = keep_artifacts } else {