Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mrcyjanek/waydroid-build
- Owner: MrCyjaneK
- Created: 2021-09-05T02:49:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-14T09:34:12.000Z (over 3 years ago)
- Last Synced: 2024-10-12T01:37:02.840Z (2 months ago)
- Language: Makefile
- Size: 1.95 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/
```