A slightly different issue with #226

This commit is contained in:
SolidHal 2020-10-31 17:20:20 -07:00
parent 877203f683
commit 3dedd00c57
2 changed files with 8 additions and 2 deletions

View File

@ -11,7 +11,10 @@ jobs:
- name: checkout project
uses: actions/checkout@v2
- name: build image
run: sudo apt install -y qemu-user-static binfmt-support && docker run --mount type=bind,source=$PWD,target=/PrawnOS
run: sudo add-apt-repository ppa:jacob/virtualisation &&
sudo apt update &&
sudo apt install -y qemu-user-static binfmt-support &&
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,10 @@ jobs:
- name: checkout project
uses: actions/checkout@v2
- name: build image
run: sudo apt install -y qemu-user-static binfmt-support && modprobe binfmt_misc && docker run --mount type=bind,source=$PWD,target=/PrawnOS
run: sudo add-apt-repository ppa:jacob/virtualisation &&
sudo apt update &&
sudo apt install -y qemu-user-static binfmt-support &&
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