We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e45b8fb commit 73712d0Copy full SHA for 73712d0
.github/workflows/ci.yml
@@ -27,10 +27,12 @@ jobs:
27
28
- name: Build and run in ARMv7 container
29
run: |
30
- docker run --rm --platform linux/arm/v7 -v $(pwd):/workspace -w /workspace arm32v7/python:3-slim \
+ docker run --rm --platform linux/arm/v7 -v $(pwd):/workspace -w /workspace arm32v7/python:3 \
31
/bin/sh -c "
32
apt-get update && \
33
- apt-get install -y git tar && \
+ 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 && \
36
python -m venv venv && \
37
. venv/bin/activate && \
38
pip install --upgrade pip && \
0 commit comments