Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/humbleui/skiabuild
CI repo for building Skia as a shared library
https://github.com/humbleui/skiabuild
Last synced: 4 days ago
JSON representation
CI repo for building Skia as a shared library
- Host: GitHub
- URL: https://github.com/humbleui/skiabuild
- Owner: HumbleUI
- Created: 2021-11-02T21:29:29.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T18:05:19.000Z (11 months ago)
- Last Synced: 2024-08-03T09:05:12.132Z (3 months ago)
- Language: Python
- Size: 64.5 KB
- Stars: 32
- Watchers: 4
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automated Skia builds
This repo is dedicated to building Skia binaries for use in [Skija](https://github.com/HumbleUI/Skija).
## Prebuilt binaries
Prebuilt binaries can be found [in releases](https://github.com/HumbleUI/SkiaBuild/releases).
## Building next version of Skia
Update `version` in [.github/workflows/build.yml](https://github.com/HumbleUI/SkiaBuild/blob/master/.github/workflows/build.yml).
## Building locally
```sh
python3 script/checkout.py --version m91-b99622c05a
python3 script/build.py
python3 script/archive.py
```To build a debug build:
```sh
python3 script/checkout.py --version m91-b99622c05a
python3 script/build.py --build-type Debug
python3 script/archive.py --build-type Debug
```