Skip to content

Commit 115b4b0

Browse files
committed
Disable test artifact capture and upload on failure.
Commented out steps for capturing and uploading test artifacts in the UI test workflow. This change likely aims to streamline the workflow and reduce unnecessary artifact handling during test failures.
1 parent 675f88c commit 115b4b0

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/uitests.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ jobs:
6969
./gradlew test -PexcludeTests="**/reference/**,**/linemarker/**,**/inspections/**,**/completion/**,**/actions/**"
7070
7171
# Uncomment if investigation is needed:
72-
73-
- name: Capture Test Artifacts on Failure
74-
if: failure() && matrix.os == 'ubuntu-latest'
75-
run: tar -cvzf video.tgz ./video
76-
shell: bash
77-
78-
- name: Upload Test Video Artifact
79-
if: failure() && matrix.os == 'ubuntu-latest'
80-
uses: actions/upload-artifact@v4
81-
with:
82-
name: latest-test-video
83-
path: video.tgz
84-
overwrite: true
72+
#
73+
# - name: Capture Test Artifacts on Failure
74+
# if: failure() && matrix.os == 'ubuntu-latest'
75+
# run: tar -cvzf video.tgz ./video
76+
# shell: bash
77+
#
78+
# - name: Upload Test Video Artifact
79+
# if: failure() && matrix.os == 'ubuntu-latest'
80+
# uses: actions/upload-artifact@v4
81+
# with:
82+
# name: latest-test-video
83+
# path: video.tgz
84+
# overwrite: true

0 commit comments

Comments
 (0)