Skip to content

Commit a5c4439

Browse files
Fix logic that preserves logs
1 parent bd55559 commit a5c4439

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/test-authnz.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ jobs:
8383
IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}')
8484
RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG \
8585
${SELENIUM_DIR}/run-suites.sh full-suite-authnz-messaging
86-
86+
mkdir -p /tmp/full-suite-authnz-messaging
87+
mv /tmp/selenium/* /tmp/full-suite-authnz-messaging
88+
8789
- name: Upload Test Artifacts
8890
if: always()
8991
uses: actions/[email protected]

.github/workflows/test-management-ui-for-pr.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,7 @@ jobs:
6363
${SELENIUM_DIR}/run-suites.sh short-suite-management-ui
6464
mkdir -p /tmp/full-suite
6565
mv /tmp/selenium/* /tmp/full-suite
66-
mkdir -p /tmp/full-suite/logs
67-
mv ${SELENIUM_DIR}/logs/* /tmp/full-suite/logs
68-
mkdir -p /tmp/full-suite/screens
69-
mv ${SELENIUM_DIR}/screens/* /tmp/full-suite/screens
70-
66+
7167
- name: Upload Test Artifacts
7268
if: always()
7369
uses: actions/[email protected]

.github/workflows/test-management-ui.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,7 @@ jobs:
7878
${SELENIUM_DIR}/run-suites.sh short-suite-management-ui
7979
mkdir -p /tmp/short-suite
8080
mv /tmp/selenium/* /tmp/short-suite
81-
mkdir -p /tmp/short-suite/logs
82-
mv ${SELENIUM_DIR}/logs/* /tmp/short-suite/logs
83-
mkdir -p /tmp/short-suite/screens
84-
mv ${SELENIUM_DIR}/screens/* /tmp/short-suite/screens
85-
81+
8682
- name: Upload Test Artifacts
8783
if: always()
8884
uses: actions/[email protected]

0 commit comments

Comments
 (0)