Skip to content

Commit 6a8a1ac

Browse files
committed
ci: [throwaway] validate redirect fix — fail-fast off, 30/batch, default to fix ref
1 parent 00e81cc commit 6a8a1ac

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/debug-python-tracer-ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
inputs:
2323
dd_trace_py_ref:
2424
description: "dd-trace-py branch / tag / SHA to clone into binaries/dd-trace-py and compile"
25-
default: "main"
25+
default: "florentin.labelle/fix-unvalidated-redirect-for-good"
2626
required: true
2727
type: string
2828
weblog:
@@ -47,16 +47,16 @@ on:
4747
type: boolean
4848
runs_per_batch:
4949
description: "how many times each batch runs the scenario"
50-
default: "10"
50+
default: "30"
5151
required: false
5252
type: string
5353

5454
env:
55-
DD_TRACE_PY_REF: ${{ github.event.inputs.dd_trace_py_ref || 'main' }}
55+
DD_TRACE_PY_REF: ${{ github.event.inputs.dd_trace_py_ref || 'florentin.labelle/fix-unvalidated-redirect-for-good' }}
5656
WEBLOG: ${{ github.event.inputs.weblog || 'flask-poc' }}
5757
SCENARIO: ${{ github.event.inputs.scenario || 'DEFAULT' }}
5858
RUN_ARGS: ${{ github.event.inputs.run_args || 'tests/appsec/iast/sink/test_unvalidated_redirect.py' }}
59-
RUNS_PER_BATCH: ${{ github.event.inputs.runs_per_batch || '10' }}
59+
RUNS_PER_BATCH: ${{ github.event.inputs.runs_per_batch || '30' }}
6060
IAST_DEBUG: ${{ github.event.inputs.iast_debug }}
6161

6262
jobs:
@@ -122,7 +122,10 @@ jobs:
122122
runs-on: ubuntu-latest
123123
needs: [build, generate-matrix]
124124
strategy:
125-
fail-fast: true
125+
# fail-fast disabled for FIX VALIDATION: an infra flake (e.g. gunicorn worker boot
126+
# timeout under loaded runners) in one batch must not cancel the redirect signal in
127+
# the others. Each failing batch uploads its own logs for infra-vs-bug triage.
128+
fail-fast: false
126129
matrix:
127130
n: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
128131
steps:

0 commit comments

Comments
 (0)