Skip to content

install the tor browser at install time #5

install the tor browser at install time

install the tor browser at install time #5

# FIXME: currently just builds it, eventually, should use qemu to try to run
# the image (potentially as a separate action)
name: build-image-armhf-libre
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-22.04
steps:
- name: checkout project
uses: actions/checkout@v3
- name: build image
# must install qemu-user-static in the host
run: sudo apt update && sudo apt install qemu-user-static &&
docker run --mount type=bind,source=$PWD,target=/PrawnOS
--privileged -v/dev:/dev debian:bookworm
/bin/bash /PrawnOS/tests/build-image.sh "$GITHUB_SHA" armhf libre Shiba
- name: publish image
uses: actions/upload-artifact@v4
with:
name: "PrawnOS-Shiba-armhf-git-${{ github.sha }}.img.xz"
path: "PrawnOS-Shiba-armhf-git-${{ github.sha }}.img.xz"