Commit 29dbac7
ci: fix smoke-zts PID lookup — php:*-zts has no pgrep
The smoke-zts step found the target PID with `pgrep -n -x php` inside the
container, but the official php:*-zts image ships no procps, so pgrep is
absent and the command aborted the `bash -e` step with exit 127 — before
pfp ever ran. The job never passed since it was added.
php runs as PID 1 in the container (docker-php-entrypoint execs the
command), so use PHP_PID=1 directly, mirroring the NTS smoke job's use of
the known PID. Verified locally end-to-end against php:8.3-zts: pfp
attaches to pid 1, detects 8.3.31, captures 199 samples with W::a/W::b.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 03e5172 commit 29dbac7
1 file changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
189 | 189 | | |
190 | 190 | | |
191 | 191 | | |
192 | | - | |
193 | | - | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
194 | 195 | | |
195 | 196 | | |
196 | 197 | | |
| |||
0 commit comments