Skip to content

Commit b278d9e

Browse files
authored
Fix debugger system tests CI logs upload (#7987)
[DEBUG-3137]
1 parent 9ac8ab1 commit b278d9e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.circleci/config.continue.yml.j2

+13-3
Original file line numberDiff line numberDiff line change
@@ -953,13 +953,23 @@ jobs:
953953
no_output_timeout: 5m
954954
command: |
955955
cd system-tests
956-
DD_SITE=datadoghq.com DD_API_KEY=$SYSTEM_TESTS_E2E_DD_API_KEY DD_APPLICATION_KEY=$SYSTEM_TESTS_E2E_DD_APP_KEY ./run.sh DEBUGGER_SCENARIOS
956+
export DD_API_KEY=$SYSTEM_TESTS_E2E_DD_API_KEY
957+
./run.sh DEBUGGER_SCENARIOS
958+
959+
- run:
960+
name: Collect log files
961+
no_output_timeout: 5m
962+
command: |
963+
mkdir -p logs_debugger
964+
for dir in system-tests/logs*/; do
965+
cp -r "$dir" logs_debugger
966+
done
957967
958968
- store_test_results:
959-
path: system-tests/logs_debugger*
969+
path: logs_debugger
960970
961971
- store_artifacts:
962-
path: system-tests/logs_debugger*
972+
path: logs_debugger
963973
964974
parametric-tests:
965975
machine:

0 commit comments

Comments
 (0)