refactor(packages): no-RECORD package discovery for Bazel runfiles
#3847
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Configuration Registry | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - mq-working-branch-* | |
| merge_group: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| jobs: | |
| # Verify the generated module is in sync with supported-configurations.json | |
| # and every DD_*/OTEL_* var in ddtrace/ is registered. | |
| check: | |
| name: Check supported-configurations.json | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup-ci-deps | |
| with: | |
| python-version: '3.13' | |
| - name: Verify registry is complete and generated module is in sync | |
| run: python scripts/supported_configurations.py --check |