Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,17 @@ jobs:
azdev statistics list-command-table CLI --statistics-only
# CLI + EXT repos
pip install jinja2 -U
pip install azure-mgmt-core==1.5.0
azdev statistics list-command-table aks-preview
azdev extension list --query "[*].name" -o table | awk 'NR>2 {print $1}' | while read -r name; do
if [ -n "$name" ]; then
echo "Processing extension: $name"
if ! azdev statistics list-command-table "$name"; then
echo "Error: Failed to list command table for extension $name"
exit 1
fi
fi
done
azdev statistics list-command-table --statistics-only > /tmp/codegen_report.json
python s/scripts/ci/codegen_report.py
env:
Expand Down
Loading