From 391bc119de711fe2fc8a460d5990f7a8e872738a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 25 Jul 2023 16:47:40 +0200 Subject: [PATCH] ci (sr.ht): alpine no longer allows pip installing to the system installation --- .builds/alpine-x64.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.builds/alpine-x64.yml b/.builds/alpine-x64.yml index 6ec489fc..d1336b64 100644 --- a/.builds/alpine-x64.yml +++ b/.builds/alpine-x64.yml @@ -47,6 +47,9 @@ tasks: ninja -C bld/release -k0 meson test -C bld/release --print-errorlogs - codespell: | + python3 -m venv codespell-venv + source codespell-venv/bin/activate pip install codespell cd foot ~/.local/bin/codespell -Lser,doas,zar README.md INSTALL.md CHANGELOG.md *.c *.h doc/*.scd + deactivate