-
Notifications
You must be signed in to change notification settings - Fork 0
142 lines (135 loc) · 5.31 KB
/
Copy pathpdm-compatibility.yml
File metadata and controls
142 lines (135 loc) · 5.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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