Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mrcyjanek/waydroid-build

Docker builders for WayDroid stuff.
https://github.com/mrcyjanek/waydroid-build

Last synced: about 2 months ago
JSON representation

Docker builders for WayDroid stuff.

Awesome Lists containing this project

README

        

# WayDroid build

Images used to build packages for waydroid

Currently available images:

- `mrcyjanek/waydroid:ubuntu.20-04` (focal)
- `mrcyjanek/waydroid:debian.11` (bullseye)
- `mrcyjanek/waydroid:debian.12` (bookworm)
- `mrcyjanek/waydroid:ubuntu.21-04` (hirsute)
- `mrcyjanek/waydroid:ubuntu.21-10` (impish) [(broken)](https://www.mail-archive.com/[email protected]/msg5953736.html)

Currently the images are built for:
- `linux/amd64`
- `linux/arm64`

If you are on i386/arm device please open an issue.

### `.abstruse.yml`

This is the `.abstruse.yml` that we use to build the software.

```yml
image: mrcyjanek/waydroid:ubuntu.20-04
matrix:
- env: DISTRO=focal
image: mrcyjanek/waydroid:ubuntu.20-04
- env: DISTRO=bullseye
image: mrcyjanek/waydroid:debian.11
- env: DISTRO=bookworm
image: mrcyjanek/waydroid:debian.12
- env: DISTRO=hirsute
image: mrcyjanek/waydroid:ubuntu.21-04
script:
- apt update
- build_changelog
- mk-build-deps -ir -t "apt-get -o Debug::pkgProblemResolver=yes -y --no-install-recommends"
- debuild -b -uc -us
- mkdir -p /apt/$DISTRO/ || true
- mv ../*.deb /apt/$DISTRO/
```