We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047dc27 commit b1f6c05Copy full SHA for b1f6c05
.github/workflows/test.yml
@@ -138,9 +138,13 @@ jobs:
138
check_name: "Test Results (Cassandra ${{ matrix.SERVER_VERSION }}, JDK ${{ matrix.java }})"
139
140
# ----- 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)
143
- name: Upload CCM startup logs artifact
144
if: failure()
145
uses: actions/upload-artifact@v4
146
with:
147
name: ccm-startup-logs-${{ matrix.SERVER_VERSION }}-jdk${{ matrix.java }}
- path: /home/runner/.ccm/**/*.log
148
+ path: |
149
+ /tmp/ccm*/**/*.log
150
+ if-no-files-found: warn
0 commit comments