Skip to content

Commit f51983e

Browse files
committed
Exclude appsec scenarios from native image weblogs
1 parent 9577931 commit f51983e

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.circleci/config.continue.yml.j2

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -838,16 +838,22 @@ jobs:
838838
no_output_timeout: 5m
839839
command: |
840840
cd system-tests
841+
(
841842
echo "
842843
DEFAULT
843844
APM_TRACING_E2E
844845
APM_TRACING_E2E_SINGLE_SPAN
845-
APPSEC_BLOCKING
846-
APPSEC_REQUEST_BLOCKING
847-
APPSEC_RASP
848-
APPSEC_RUNTIME_ACTIVATION
849-
REMOTE_CONFIG_MOCKED_BACKEND_ASM_DD
850-
" | circleci tests split > scenarios.list
846+
"
847+
if ! [[ << parameters.weblog-variant >> =~ .*native ]]; then
848+
echo "
849+
APPSEC_BLOCKING
850+
APPSEC_REQUEST_BLOCKING
851+
APPSEC_RASP
852+
APPSEC_RUNTIME_ACTIVATION
853+
REMOTE_CONFIG_MOCKED_BACKEND_ASM_DD
854+
"
855+
fi
856+
) | circleci tests split > scenarios.list
851857
for scenario in $(<scenarios.list); do
852858
if [[ $scenario =~ .*_E2E.* ]]; then
853859
export DD_SITE=datadoghq.com

0 commit comments

Comments
 (0)