|
18 | 18 | - name: Checkout system tests
|
19 | 19 | uses: actions/checkout@v4
|
20 | 20 | with:
|
| 21 | + persist-credentials: false |
21 | 22 | repository: 'DataDog/system-tests'
|
22 | 23 |
|
23 | 24 | - name: Build agent
|
@@ -62,11 +63,13 @@ jobs:
|
62 | 63 | - name: Checkout system tests
|
63 | 64 | uses: actions/checkout@v4
|
64 | 65 | with:
|
| 66 | + persist-credentials: false |
65 | 67 | repository: 'DataDog/system-tests'
|
66 | 68 |
|
67 | 69 | - name: Checkout dd-trace-py
|
68 | 70 | uses: actions/checkout@v4
|
69 | 71 | with:
|
| 72 | + persist-credentials: false |
70 | 73 | path: 'binaries/dd-trace-py'
|
71 | 74 | fetch-depth: 0
|
72 | 75 | # NB this ref is necessary to keep the checkout out of detached HEAD state, which setuptools_scm requires for
|
@@ -112,6 +115,7 @@ jobs:
|
112 | 115 | - name: Checkout system tests
|
113 | 116 | uses: actions/checkout@v4
|
114 | 117 | with:
|
| 118 | + persist-credentials: false |
115 | 119 | repository: 'DataDog/system-tests'
|
116 | 120 |
|
117 | 121 | - name: Build runner
|
@@ -149,6 +153,14 @@ jobs:
|
149 | 153 | if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'other'
|
150 | 154 | run: ./run.sh CROSSED_TRACING_LIBRARIES
|
151 | 155 |
|
| 156 | + - name: Run PROFILING |
| 157 | + if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'other' |
| 158 | + run: | |
| 159 | + cat /proc/sys/kernel/perf_event_paranoid |
| 160 | + sudo sysctl kernel.perf_event_paranoid=1 |
| 161 | + sudo sysctl -p |
| 162 | + ./run.sh PROFILING |
| 163 | +
|
152 | 164 | - name: Run REMOTE_CONFIG_MOCKED_BACKEND_ASM_FEATURES
|
153 | 165 | if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'remote-config'
|
154 | 166 | run: ./run.sh REMOTE_CONFIG_MOCKED_BACKEND_ASM_FEATURES
|
@@ -233,17 +245,9 @@ jobs:
|
233 | 245 | if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
|
234 | 246 | run: ./run.sh DEBUGGER_PROBES_STATUS
|
235 | 247 |
|
236 |
| - - name: Run DEBUGGER_METHOD_PROBES_SNAPSHOT |
237 |
| - if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1' |
238 |
| - run: ./run.sh DEBUGGER_METHOD_PROBES_SNAPSHOT |
239 |
| - |
240 |
| - - name: Run DEBUGGER_LINE_PROBES_SNAPSHOT |
241 |
| - if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1' |
242 |
| - run: ./run.sh DEBUGGER_LINE_PROBES_SNAPSHOT |
243 |
| - |
244 |
| - - name: Run DEBUGGER_MIX_LOG_PROBE |
| 248 | + - name: Run DEBUGGER_PROBES_SNAPSHOT |
245 | 249 | if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
|
246 |
| - run: ./run.sh DEBUGGER_MIX_LOG_PROBE |
| 250 | + run: ./run.sh DEBUGGER_PROBES_SNAPSHOT |
247 | 251 |
|
248 | 252 | - name: Run DEBUGGER_PII_REDACTION
|
249 | 253 | if: always() && steps.docker_load.outcome == 'success' && matrix.scenario == 'debugger-1'
|
@@ -280,10 +284,12 @@ jobs:
|
280 | 284 | - name: Checkout system tests
|
281 | 285 | uses: actions/checkout@v4
|
282 | 286 | with:
|
| 287 | + persist-credentials: false |
283 | 288 | repository: 'DataDog/system-tests'
|
284 | 289 | - name: Checkout dd-trace-py
|
285 | 290 | uses: actions/checkout@v4
|
286 | 291 | with:
|
| 292 | + persist-credentials: false |
287 | 293 | path: 'binaries/dd-trace-py'
|
288 | 294 | fetch-depth: 0
|
289 | 295 | ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
0 commit comments