Skip to content

Commit b1f6c05

Browse files
Update test.yml
1 parent 047dc27 commit b1f6c05

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,13 @@ jobs:
138138
check_name: "Test Results (Cassandra ${{ matrix.SERVER_VERSION }}, JDK ${{ matrix.java }})"
139139

140140
# ----- Upload ALL startup* logs from ~/.ccm on failure -----
141+
142+
# Upload ALL startup* logs from either ~/.ccm or /tmp/ccm* (on failure; switch to always() if you want them every run)
141143
- name: Upload CCM startup logs artifact
142144
if: failure()
143145
uses: actions/upload-artifact@v4
144146
with:
145147
name: ccm-startup-logs-${{ matrix.SERVER_VERSION }}-jdk${{ matrix.java }}
146-
path: /home/runner/.ccm/**/*.log
148+
path: |
149+
/tmp/ccm*/**/*.log
150+
if-no-files-found: warn

0 commit comments

Comments
 (0)