Skip to content

Commit

Permalink
[CI]: Fix android-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Oct 23, 2023
1 parent de815b8 commit abdd6ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
build:
runs-on: macos-12-xlarge
runs-on: macos-latest-xlarge
# if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions tools/rust-bindgen
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ if [[ "$1" == "native" ]] || [[ "$1" == "" ]]; then
NATIVE="true"
fi

# Generate bindings for mobile platforms on MacOS only.
if [[ `uname` == "Darwin" ]]; then
# Whether to generate bindings for Android.
# Whether to generate bindings for Android.
if [[ "$1" == "android" ]] || [[ "$1" == "" ]]; then
ANDROID="true"
fi

# Generate bindings for ios platforms on MacOS only.
if [[ `uname` == "Darwin" ]]; then
# Whether to generate bindings for iOS.
if [[ "$1" == "ios" ]] || [[ "$1" == "" ]]; then
IOS="true"
Expand Down

0 comments on commit abdd6ac

Please sign in to comment.