X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=bootstrap-verify-perf.sh;h=e41b575fbc7d2d5a7608c2a18198b049cc949604;hp=8dedb530abde3fa0ef83cfd79eb8aef0dce620f4;hb=16d26b1280d64f046838baefbe642f7fd5d853a8;hpb=3b5e5e14a10c3cac63a526b5d9ac495822fd663f diff --git a/bootstrap-verify-perf.sh b/bootstrap-verify-perf.sh index 8dedb530ab..e41b575fbc 100755 --- a/bootstrap-verify-perf.sh +++ b/bootstrap-verify-perf.sh @@ -27,7 +27,10 @@ INSTALLATION_DIR="/tmp/install_dir" PYBOT_ARGS="-W 150 -L TRACE" -ARCHIVE_ARTIFACTS=(log.html output.xml report.html output_perf_data.xml output_perf_data.json) +JOB_ARCHIVE_ARTIFACTS=(log.html output.xml report.html output_perf_data.xml) +LOG_ARCHIVE_ARTIFACTS=(output.xml) +LOG_ARCHIVES_DIR="$WORKSPACE/archives" +mkdir -p ${LOG_ARCHIVES_DIR} # If we run this script from CSIT jobs we want to use stable vpp version if [[ ${JOB_NAME} == csit-* ]] ; @@ -35,8 +38,7 @@ then mkdir vpp_download cd vpp_download - if [[ ${TEST_TAG} == *NIGHTLY ]] || \ - [[ ${TEST_TAG} == *DAILY ]] || \ + if [[ ${TEST_TAG} == *DAILY ]] || \ [[ ${TEST_TAG} == *WEEKLY ]]; then # Download the latest VPP build .deb install packages @@ -140,6 +142,9 @@ case "$TEST_TAG" in --include ndrdiscAND1t1cANDipsecORndrdiscAND2t2cANDipsec \ tests/ RETURN_STATUS=$(echo $?) + for i in ${LOG_ARCHIVE_ARTIFACTS[@]}; do + cp $( readlink -f ${i} | tr '\n' ' ' ) ${LOG_ARCHIVES_DIR}/${i}.log + done ;; PERFTEST_SEMI_WEEKLY ) pybot ${PYBOT_ARGS} \ @@ -148,6 +153,9 @@ case "$TEST_TAG" in --include ndrdiscANDnic_intel-x710AND1t1cORndrdiscANDnic_intel-x710AND2t2cORndrdiscANDnic_intel-xl710AND1t1cORndrdiscANDnic_intel-xl710AND2t2c \ tests/ RETURN_STATUS=$(echo $?) + for i in ${LOG_ARCHIVE_ARTIFACTS[@]}; do + cp $( readlink -f ${i} | tr '\n' ' ' ) ${LOG_ARCHIVES_DIR}/${i}.log + done ;; VERIFY-PERF-NDRDISC ) pybot ${PYBOT_ARGS} \ @@ -177,9 +185,14 @@ case "$TEST_TAG" in pybot ${PYBOT_ARGS} \ -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \ -s "tests.vpp.perf" \ - --include mrrAND1t1cORmrrAND2t2c \ + --include mrrAND64bAND1t1c \ + --include mrrAND64bAND2t2c \ + --include mrrAND64bAND4t4c \ tests/ RETURN_STATUS=$(echo $?) + for i in ${LOG_ARCHIVE_ARTIFACTS[@]}; do + cp $( readlink -f ${i} | tr '\n' ' ' ) ${LOG_ARCHIVES_DIR}/${i}.log + done ;; VERIFY-PERF-IP4 ) pybot ${PYBOT_ARGS} \ @@ -299,6 +312,8 @@ case "$TEST_TAG" in -s "tests.vpp.perf" \ --include pdrdiscANDnic_intel-x520-da2AND1t1cANDmemif \ --include pdrdiscANDnic_intel-x520-da2AND2t2cANDmemif \ + --include mrrANDnic_intel-x520-da2AND1t1cANDmemif \ + --include mrrANDnic_intel-x520-da2AND2t2cANDmemif \ tests/ RETURN_STATUS=$(echo $?) ;; @@ -359,7 +374,7 @@ fi # Archive artifacts mkdir -p archive -for i in ${ARCHIVE_ARTIFACTS[@]}; do +for i in ${JOB_ARCHIVE_ARTIFACTS[@]}; do cp $( readlink -f ${i} | tr '\n' ' ' ) archive/ done