Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JetBrains/skia-build
https://github.com/JetBrains/skia-build
Last synced: about 9 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/JetBrains/skia-build
- Owner: JetBrains
- Archived: true
- Created: 2020-10-09T11:40:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-17T06:14:07.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T12:06:57.190Z (7 months ago)
- Language: Python
- Size: 58.6 KB
- Stars: 85
- Watchers: 11
- Forks: 45
- Open Issues: 5
-
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/JetBrains/skija) and [Skiko](https://github.com/JetBrains/skiko).
## Prebuilt binaries
Prebuilt binaries can be found [in releases](https://github.com/JetBrains/skia-build/releases).
## Building next version of Skia
Update `version` in [.github/workflows/build.yml](https://github.com/JetBrains/skia-build/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
```