Skip to content

Commit 9bc8bd1

Browse files
committed
try fix logs
1 parent df51f63 commit 9bc8bd1

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.circleci/config.continue.yml.j2

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -941,13 +941,22 @@ jobs:
941941
no_output_timeout: 5m
942942
command: |
943943
cd system-tests
944-
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
944+
export DD_API_KEY=$SYSTEM_TESTS_E2E_DD_API_KEY
945+
./run.sh DEBUGGER_SCENARIOS
946+
947+
- run:
948+
name: Collect log files
949+
no_output_timeout: 5m
950+
command: |
951+
cd system-tests
952+
mkdir -p log_debugger
953+
find . -type d -name "log*" -exec mv {} log_debugger/ \;
945954
946955
- store_test_results:
947-
path: system-tests/logs_debugger*
956+
path: system-tests/logs_debugger
948957
949958
- store_artifacts:
950-
path: system-tests/logs_debugger*
959+
path: system-tests/logs_debugger
951960
952961
parametric-tests:
953962
machine:

0 commit comments

Comments
 (0)