File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 80
80
${{ matrix.coherenceVersion }} \
81
81
${{ matrix.base-image }} \
82
82
${{ matrix.profile }}
83
+ - name : Archive server logs
84
+ uses : actions/upload-artifact@v4
85
+ with :
86
+ name : server-logs-${{ matrix.coherenceVersion }}
87
+ path : ./tests/utils/*.txt
88
+ retention-days : 10
Original file line number Diff line number Diff line change @@ -172,6 +172,11 @@ docs: ## Generate doc
172
172
.PHONY : test-cluster-startup
173
173
test-cluster-startup : $(BUILD_PROPS ) # # Startup any test cluster members using docker-compose
174
174
cd tests/utils && ${COMPOSE} -f docker-compose-2-members.yaml up -d
175
+ $(eval LOGFILE_NAME=log-clear-tests-$(COHERENCE_VERSION ) .txt)
176
+ ifeq ($(RUN_SECURE ) , true)
177
+ $(eval LOGFILE_NAME=log-ssl-tests-$(COHERENCE_VERSION).txt)
178
+ endif
179
+ cd tests/utils && ${COMPOSE} -f docker-compose-2-members.yaml logs -f --no-color > $(LOGFILE_NAME) &
175
180
176
181
# ----------------------------------------------------------------------------------------------------------------------
177
182
# Shutdown any cluster members via docker compose
You can’t perform that action at this time.
0 commit comments