CI: Install Ruff from PyPi instead of Alpine (MR 2525)

The Alpine version is too outdated.
This commit is contained in:
Newbyte 2025-01-11 15:39:36 +01:00 committed by Oliver Smith
parent 3061e702ab
commit 7a7fa14837
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -4,7 +4,8 @@
if [ "$(id -u)" = 0 ]; then
set -x
apk -q add ruff
apk -q add py3-pip
pip install --break-system-packages --no-warn-script-location ruff
exec su "${TESTUSER:-build}" -c "sh -e $0"
fi