Skip to content

Commit 31e1e7e

Browse files
committed
Try to fix install by adding git
1 parent b80ccbb commit 31e1e7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
fail-fast: false
13-
max-parallel: 2
13+
max-parallel: 4
1414
matrix:
15-
platform: ["linux/386", "linux/amd64", "linux/arm/v6", "linux/arm/v7", "linux/arm64/v8", "linux/ppc64le", "linux/s390x"]
15+
platform: ["linux/amd64", "linux/arm/v6", "linux/arm/v7", "linux/arm64/v8", "linux/386", "linux/ppc64le", "linux/s390x"]
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v3

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV CARGO_INSTALL_ROOT="/workdir"
1010
# Newer rust needed due to let...else feature
1111
RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community rust cargo
1212

13-
RUN apk --no-cache add musl-dev
13+
RUN apk --no-cache add musl-dev git
1414

1515
ADD https://github.com/RustPython/RustPython/archive/refs/tags/v$RUST_PYTHON_VERSION.tar.gz /tmp/v$RUST_PYTHON_VERSION.tar.gz
1616

0 commit comments

Comments
 (0)