Skip to content

Commit

Permalink
migrate-to-m110
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeevPavel committed Feb 1, 2023
1 parent 5c38518 commit a96e822
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
default: 'false'

env:
version: m109-6362919
version: m110-de56cc1

jobs:
macos:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ Prebuilt binaries can be found [in releases](https://github.com/JetBrains/skia-p
## Building locally

```sh
python3 script/checkout.py --version m105-305b7c02
python3 script/checkout.py --version m110-de56cc1
python3 script/build.py
python3 script/archive.py
```

To build a debug build:

```sh
python3 script/checkout.py --version m105-305b7c02
python3 script/checkout.py --version m110-de56cc1
python3 script/build.py --build-type Debug
python3 script/archive.py --build-type Debug
```
4 changes: 4 additions & 0 deletions script/checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ def main():
else:
subprocess.check_call(["python3", "tools/git-sync-deps"])

# fetch ninja
print("> Fetching ninja")
subprocess.check_call(["bin/fetch-ninja"])

return 0

if __name__ == '__main__':
Expand Down

0 comments on commit a96e822

Please sign in to comment.