qemu 5.0 available in ubuntu 20.10 has issue with armhf. this is fixed in 5.1

try grabbing it from debian sid to use for github ci
This commit is contained in:
SolidHal 2020-11-17 21:45:04 -08:00
parent ce10902bf5
commit 5bfe211559
3 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,8 @@ jobs:
- name: checkout project
uses: actions/checkout@v2
- name: build image
run: docker run --mount type=bind,source=$PWD,target=/PrawnOS
run: sudo dpkg -i /PrawnOS/tests/resources/qemu-user-static_5.1+dfsg-4+b1_amd64.deb &&
docker run --mount type=bind,source=$PWD,target=/PrawnOS
--privileged -v/dev:/dev debian:bullseye
/bin/bash /PrawnOS/tests/build-image.sh "$GITHUB_SHA" arm64 Shiba
- name: publish image

View File

@ -11,7 +11,8 @@ jobs:
- name: checkout project
uses: actions/checkout@v2
- name: build image
run: docker run --mount type=bind,source=$PWD,target=/PrawnOS
run: sudo dpkg -i /PrawnOS/tests/resources/qemu-user-static_5.1+dfsg-4+b1_amd64.deb &&
docker run --mount type=bind,source=$PWD,target=/PrawnOS
--privileged -v/dev:/dev debian:bullseye
/bin/bash /PrawnOS/tests/build-image.sh "$GITHUB_SHA" armhf Shiba
- name: publish image