Skip to content

Commit e4eda7d

Browse files
committed
debug
1 parent d1aee38 commit e4eda7d

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,24 @@ jobs:
6363
- name: Test image
6464
run: |
6565
cd "${{ matrix.image }}"
66-
docker run --rm -v ${{ github.workspace }}/Pillow:/Pillow ubuntu-26.04-plucky-s390x:main bash -c "source /vpy3/bin/activate && cd /Pillow && make clean && make install-coverage && python -m pytest Tests/test_file_webp_animated.py -xvs"
66+
docker run --rm -v ${{ github.workspace }}/Pillow:/Pillow ubuntu-26.04-plucky-s390x:main bash -c '
67+
source /vpy3/bin/activate
68+
cd /Pillow
69+
make clean
70+
make install-coverage
71+
72+
echo "=== runtime webp version ==="
73+
python3 -c "from PIL import features; print(features.version(\"webp\"))"
74+
75+
echo "=== ldd _webp.so ==="
76+
find /vpy3 -name "_webp*" -exec ldd {} \;
77+
78+
echo "=== libwebp files ==="
79+
ls -la /usr/lib/libwebp* /usr/lib/s390x-linux-gnu/libwebp* 2>/dev/null
80+
81+
echo "=== running test ==="
82+
python -m pytest Tests/test_file_webp_animated.py -xvs
83+
'
6784
6885
- name: Log image size
6986
run: |

0 commit comments

Comments
 (0)