Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-0 committed Jan 4, 2025
1 parent 0939a7a commit 5efa28b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .azure-pipelines/ultimate-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4990,7 +4990,7 @@ stages:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
scenarioGroups: "essentials,parametric,appsec,remote-config,telemetry,integrations,debugger,profiling"
additionalScenarios: '["TRACE_PROPAGATION_STYLE_W3C","LIBRARY_CONF_CUSTOM_HEADER_TAGS"]'
additionalScenarios: '[\"TRACE_PROPAGATION_STYLE_W3C\",\"LIBRARY_CONF_CUSTOM_HEADER_TAGS\"]'
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
Expand Down Expand Up @@ -5020,6 +5020,8 @@ stages:
- script: |
set -e
source venv/bin/activate
PYTHONPATH=. python utils/scripts/compute-workflow-parameters.py dotnet -g appsec > out.txt
endtoend_scenarios=$(grep 'endtoend_scenarios' out.txt | sed 's/.*=//g')
Expand All @@ -5041,10 +5043,10 @@ stages:
echo "script_weblogs = json.loads('$endtoend_weblogs')" >> cross.py
echo "extra_scenarios = json.loads('$(additionalScenarios)')" >> cross.py
echo 'combined_scenarios = script_scenarios + script_graphql_scenarios + script_parametric_scenarios + extra_scenarios' >> cross.py
echo 'matrix_items = []' >> cross.py
echo 'matrix_items = {}' >> cross.py
echo 'for s in combined_scenarios:' >> cross.py
echo ' for w in script_weblogs:' >> cross.py
echo ' matrix_items.append({"SCENARIO": s, "WEBLOG_VARIANT": w})' >> cross.py
echo ' matrix_items[s] = {"SCENARIO": s, "WEBLOG_VARIANT": w}' >> cross.py
echo 'print(json.dumps(matrix_items))' >> cross.py
python cross.py > matrix.json
Expand Down

0 comments on commit 5efa28b

Please sign in to comment.