Initialize bool in DescriptorSet.h (#8173) #4657
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android | |
on: | |
push: | |
branches: | |
- main | |
- release | |
- rc/** | |
jobs: | |
build-android: | |
name: build-android | |
# We intentially use a larger runner here to enable larger disk space | |
# (standard linux runner will fail on disk space and faster build time). | |
runs-on: ubuntu-22.04-32core | |
steps: | |
- uses: actions/checkout@v4.1.6 | |
- name: Run Android Continuous | |
uses: ./.github/actions/android-continuous | |
with: | |
build-abi: armeabi-v7a,arm64-v8a,x86_64 |