Skip to content

Commit 9ccad5b

Browse files
committed
ubuntu-test: Explicitly set the platform that we're going to emulate.
This is to avoid 'docker: no matching manifest for linux/amd64 in the manifest list entries.' Unclear why I don't have to do this for the manylinux images.
1 parent 66ccbf0 commit 9ccad5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ubuntu-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ if [ -d /greenlet ]; then
4747
fi
4848

4949
# Mount the current directory as /greenlet
50-
docker run --rm -v "$(pwd):/greenlet" ${DOCKER_IMAGE:-riscv64/ubuntu:latest} /greenlet/$(basename $0)
50+
docker run --rm --platform linux/riscv64 -v "$(pwd):/greenlet" ${DOCKER_IMAGE:-riscv64/ubuntu:latest} /greenlet/$(basename $0)

0 commit comments

Comments
 (0)