Skip to content

Commit b0de2d5

Browse files
committed
More attempt to fix with container in GH Action
1 parent 30aba47 commit b0de2d5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/install.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
5454
case "$DIST_ID" in
5555
arch)
56-
pacman --noconfirm -Sy "${DEPS_COMMON[@]}" systemd-libs python-pip ctags gnupg
56+
pacman --noconfirm -Sy -u "${DEPS_COMMON[@]}" systemd-libs python-pip ctags gnupg
5757
;;
5858
centos)
5959
dnf config-manager --set-enabled crb
@@ -72,15 +72,14 @@ jobs:
7272
exit 1
7373
esac
7474
75-
- name: Install uv
76-
uses: astral-sh/setup-uv@v5
75+
python3 -m pip install --break-system-packages build
7776
7877
- name: Install & test
7978
shell: bash
8079
run: |
8180
set -x
82-
uv build
83-
uv sync --no-editable
81+
python3 -m build
82+
python3 -m pip install .
8483
# Avoid importing the systemd module from the git repository
8584
cd /
8685
python3 -c 'from systemd import journal; print(journal.__version__)'

0 commit comments

Comments
 (0)