@@ -490,6 +490,19 @@ jobs:
490490 - name : Configure E2E CTST test environment
491491 run : bash configure-e2e-ctst.sh
492492 working-directory : ./.github/scripts/end2end
493+ - name : Dump setup state for PRIMARY instance (OLD)
494+ run : bash dump-setup-state.sh default end2end > /tmp/old-primary-dump.txt 2>&1
495+ working-directory : ./.github/scripts/end2end
496+ continue-on-error : true
497+ - name : Dump setup state for PRA instance (OLD)
498+ run : bash dump-setup-state.sh default end2end-pra > /tmp/old-pra-dump.txt 2>&1
499+ working-directory : ./.github/scripts/end2end
500+ continue-on-error : true
501+ - name : Show diagnostic dumps (OLD)
502+ run : |
503+ echo "=== PRIMARY INSTANCE DUMP ===" && cat /tmp/old-primary-dump.txt
504+ echo "=== PRA INSTANCE DUMP ===" && cat /tmp/old-pra-dump.txt
505+ continue-on-error : true
493506 - name : Run CTST end to end tests
494507 run : bash run-e2e-ctst.sh "" "" "" "" --tags @PRA
495508 working-directory : ./.github/scripts/end2end
@@ -662,6 +675,13 @@ jobs:
662675 - name : Configure E2E test environment
663676 run : bash configure-e2e-ctst.sh
664677 working-directory : ./.github/scripts/end2end
678+ - name : Dump setup state before tests (OLD)
679+ run : bash dump-setup-state.sh default end2end > /tmp/old-ctst-sharded-dump.txt 2>&1
680+ working-directory : ./.github/scripts/end2end
681+ continue-on-error : true
682+ - name : Show diagnostic dump (OLD)
683+ run : cat /tmp/old-ctst-sharded-dump.txt
684+ continue-on-error : true
665685 - name : Run CTST end to end tests
666686 run : bash run-e2e-ctst.sh "" "" "" "" --tags 'not @PRA'
667687 working-directory : ./.github/scripts/end2end
0 commit comments