Fix Bun patch compatibility and annotations #6
Workflow file for this run
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: PDM patch compatibility | |
| # Native PDM installer matrix: builds the CLI once per OS, bootstraps pinned | |
| # PDM releases with uv, and runs `scripts/backtest-pdm.py` — hosted, vendored | |
| # and agent mode against the public urllib3 free patch, verifying the | |
| # INSTALLED bytes, lock/manifest stability, hash rejection and rollback. No | |
| # Socket API token is needed. See docs/testing/pdm-compatibility.md. | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/pdm-compatibility.yml' | |
| - 'scripts/backtest-pdm.py' | |
| - 'crates/socket-patch-core/src/utils/pdm_lock.rs' | |
| - 'crates/socket-patch-core/src/patch/redirect/**' | |
| - 'crates/socket-patch-core/src/vendor/pypi*.rs' | |
| - 'crates/socket-patch-core/src/vendor/common.rs' | |
| - 'crates/socket-patch-core/src/vendor/lock_inventory.rs' | |
| - 'crates/socket-patch-cli/src/commands/scan/**' | |
| - 'crates/socket-patch-cli/src/commands/rollback.rs' | |
| - 'crates/socket-patch-core/tests/fixtures/pdm-native/**' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'scripts/backtest-pdm.py' | |
| - 'crates/socket-patch-core/src/utils/pdm_lock.rs' | |
| - 'crates/socket-patch-core/src/patch/redirect/pdm.rs' | |
| - 'crates/socket-patch-core/src/vendor/pypi_pdm.rs' | |
| workflow_dispatch: | |
| inputs: | |
| versions: | |
| description: 'Space-separated PDM versions (empty = the required matrix below)' | |
| required: false | |
| default: '' | |
| shapes: | |
| description: 'Space-separated shapes (empty = every shape)' | |
| required: false | |
| default: '' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: pdm-compat-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| SOCKET_NO_CONFIG: '1' | |
| SOCKET_NO_UPDATE_CHECK: '1' | |
| PDM_CHECK_UPDATE: 'false' | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | |
| with: | |
| key: pdm-compat | |
| - run: cargo build --locked -p socket-patch-cli | |
| - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
| with: | |
| name: pdm-cli-${{ matrix.os }} | |
| path: | | |
| target/debug/socket-patch | |
| target/debug/socket-patch.exe | |
| if-no-files-found: error | |
| retention-days: 7 | |
| native: | |
| needs: build | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Every stable PDM major family (0.x, 1.x, 2.x) and each 2.x lock-format | |
| # boundary, on Linux and Windows; macOS samples the ends of the range. | |
| os: [ubuntu-latest, windows-latest] | |
| pdm: ['0.12.3', '1.15.5', '2.0.3', '2.1.5', '2.3.4', '2.6.1', '2.7.4', '2.8.2', '2.9.3', '2.10.4', '2.11.2', '2.17.3', '2.20.1', '2.25.9', '2.29.2'] | |
| include: | |
| - { os: macos-latest, pdm: '0.12.3' } | |
| - { os: macos-latest, pdm: '2.8.2' } | |
| - { os: macos-latest, pdm: '2.29.2' } | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 45 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4 | |
| with: | |
| name: pdm-cli-${{ matrix.os }} | |
| path: native-cli | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: '3.12' | |
| # uv bootstraps every pinned PDM release (and its interpreter) itself; | |
| # pinning uv keeps the bootstrap reproducible across runner images. | |
| - run: python -m pip install uv==0.11.19 | |
| - name: Exercise the native PDM installers | |
| shell: bash | |
| env: | |
| PDM_VERSION: ${{ matrix.pdm }} | |
| VERSIONS_OVERRIDE: ${{ github.event.inputs.versions }} | |
| SHAPES_OVERRIDE: ${{ github.event.inputs.shapes }} | |
| run: | | |
| chmod +x native-cli/socket-patch* || true | |
| cli="native-cli/socket-patch" | |
| if [ "$RUNNER_OS" = "Windows" ]; then cli="native-cli/socket-patch.exe"; fi | |
| versions="$PDM_VERSION" | |
| if [ -n "$VERSIONS_OVERRIDE" ]; then versions="$VERSIONS_OVERRIDE"; fi | |
| shapes_arg=() | |
| if [ -n "$SHAPES_OVERRIDE" ]; then shapes_arg=(--shapes $SHAPES_OVERRIDE); fi | |
| python3 scripts/backtest-pdm.py \ | |
| --socket-patch "$cli" \ | |
| --socket-patch-revision "$GITHUB_SHA" \ | |
| --output native-pdm \ | |
| --versions $versions \ | |
| --modes hosted vendored agent \ | |
| "${shapes_arg[@]}" \ | |
| --jobs 3 | |
| - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
| if: always() | |
| with: | |
| name: pdm-results-${{ matrix.os }}-${{ matrix.pdm }} | |
| path: | | |
| native-pdm/summary.json | |
| native-pdm/summary.md | |
| native-pdm/*.log | |
| native-pdm/original/**/pdm.lock | |
| native-pdm/original/**/pyproject.toml | |
| native-pdm/captures/**/result.json | |
| native-pdm/captures/**/cli-output.json | |
| native-pdm/captures/**/pdm.lock | |
| native-pdm/captures/**/*.log | |
| retention-days: 14 |