File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ jobs:
117
117
- name : Run Temporal CLI
118
118
shell : bash
119
119
run : |
120
- temporal server start-dev --headless &
120
+ temporal server start-dev --headless --db-filename /tmp/temporal.sqlite3 &> /tmp/devserver.log &
121
121
122
122
- name : Run tests
123
123
run : |
@@ -140,6 +140,13 @@ jobs:
140
140
name : worker-mem-logs-${{ inputs.reuse-v8-context && 'reuse-v8' || 'no-reuse-v8' }}
141
141
path : ${{ env.TEMPORAL_TESTING_MEM_LOG_DIR }}
142
142
143
+ - name : Upload Dev Server logs
144
+ uses : actions/upload-artifact@v4
145
+ if : failure() || cancelled()
146
+ with :
147
+ name : integration-tests-${{ inputs.reuse-v8-context && 'reuse' || 'noreuse' }}-devserver-logs
148
+ path : /tmp/devserver.log
149
+
143
150
# TODO: set up alerting
144
151
# TODO: record test durations and other metrics like memory usage / cache utilization / CPU
145
152
# TODO: uses prebuilt binaries from ci.yml
You can’t perform that action at this time.
0 commit comments