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 e853683 commit 47ac011Copy full SHA for 47ac011
2 files changed
.github/workflows/ci.yml
@@ -60,7 +60,7 @@ jobs:
60
if: runner.os == 'macOS'
61
run: ./build.libgit2.sh
62
- name: Setup QEMU
63
- if: runner.os == 'Linux'
+ if: startsWith(matrix.name, 'linux-musl-') || matrix.name == 'linux-riscv64'
64
run: docker run --privileged --rm tonistiigi/binfmt --install all
65
- name: Build Linux
66
if: runner.os == 'Linux'
dockerbuild.sh
@@ -24,7 +24,7 @@ else
24
dockerfile="docker/linux"
25
fi
26
27
-docker build --no-cache --platform linux/$arch -t $RID -f $dockerfile --build-arg ALPINE_VERSION=$alpineVersion .
+docker build --no-cache --platform linux/$arch -t $RID -f $dockerfile --build-arg ARCH=$arch --build-arg ALPINE_VERSION=$alpineVersion .
28
29
docker run -t --platform linux/$arch -e RID=$RID --name=$RID $RID
30
0 commit comments