Skip to content

Commit 73712d0

Browse files
authored
Update ci.yml
1 parent e45b8fb commit 73712d0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ jobs:
2727
2828
- name: Build and run in ARMv7 container
2929
run: |
30-
docker run --rm --platform linux/arm/v7 -v $(pwd):/workspace -w /workspace arm32v7/python:3-slim \
30+
docker run --rm --platform linux/arm/v7 -v $(pwd):/workspace -w /workspace arm32v7/python:3 \
3131
/bin/sh -c "
3232
apt-get update && \
33-
apt-get install -y git tar && \
33+
apt-get install -y git tar gcc curl && \
34+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
35+
export PATH=\$HOME/.cargo/bin:\$PATH && \
3436
python -m venv venv && \
3537
. venv/bin/activate && \
3638
pip install --upgrade pip && \

0 commit comments

Comments
 (0)