Skip to content

Commit 8e72bde

Browse files
committed
Fix CI cross arch check
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 8b0cf85 commit 8e72bde

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/containers/test-installation/Dockerfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55

66
FROM --platform=${TARGETPLATFORM} python:3.11-slim
77

8-
RUN python -m pip install --upgrade --no-cache-dir pip
8+
RUN apt-get update -y && \
9+
apt-get install --no-install-recommends -y \
10+
git && \
11+
apt-get clean && \
12+
rm -rf /var/lib/apt/lists/* && \
13+
python -m pip install --upgrade --no-cache-dir pip
14+
915

1016
COPY dist dist
1117
RUN pip install dist/*.whl && \

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ jobs:
230230
run: python -m build
231231

232232
- name: Upload distribution files
233-
uses: actions/upload-artifact@v3
233+
uses: actions/upload-artifact@v4
234234
with:
235235
name: dist-packages
236236
path: dist/
@@ -294,7 +294,7 @@ jobs:
294294
mike set-default $MIKE_VERSION
295295
296296
- name: Upload site
297-
uses: actions/upload-artifact@v3
297+
uses: actions/upload-artifact@v4
298298
with:
299299
name: docs-site
300300
path: site/

0 commit comments

Comments
 (0)