Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
m88-59bafeeaa7
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Nov 13, 2020
1 parent 1bdf21b commit 2da2f60
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:
- "*.sh"

env:
# version: m87
skia_branch: chrome/m87
skia_commit: 489348851cca51b23f522734b6db3c785ffdfaed
release: m87-4893488
# version: m88
skia_branch: chrome/m88
skia_commit: 59bafeeaa7de9eb753e3778c414e01dcf013dcd8
release: m88-59bafeeaa7
archive: true

jobs:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,29 @@ This script will:
- produce redistributable zip.

```sh
version=m87 ./build_macos.sh
version=m88 ./build_macos.sh
```

If you want to specify exact commit to build:

```sh
skia_branch=chrome/m87 skia_commit=a0c82f08df58dcd0e1d143db9ccab38f8d823b95 release=m87-a0c82f0 ./build_macos.sh
skia_branch=chrome/m88 skia_commit=59bafeeaa7de9eb753e3778c414e01dcf013dcd8 release=m88-59bafeeaa7 ./build_macos.sh
```

To build debug version:

```sh
build_type=Debug version=m87 ./build_macos.sh
build_type=Debug version=m88 ./build_macos.sh
```

To build a zip archive at the end:

```sh
archive=true version=m87 ./build_macos.sh
archive=true version=m88 ./build_macos.sh
```

To skip checkout (e.g. for builds with local changes):

```sh
checkout=false version=m87 ./build_macos.sh
checkout=false version=m88 ./build_macos.sh
```
2 changes: 1 addition & 1 deletion checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ "${checkout:-true}" != "false" ]; then
else
echo "> Fetching ${skia_branch}"
git fetch origin ${skia_branch}:remotes/origin/${skia_branch}
git checkout -b ${skia_branch}
git checkout ${skia_branch}
fi
else
echo "> Cloning ${skia_branch}"
Expand Down

0 comments on commit 2da2f60

Please sign in to comment.