Add a disclaimer to index.rst about the graphics abstraction #46
This file contains hidden or 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 Build Chapters' | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| # tags: | |
| # - "v*.*.*" | |
| # workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Android Build | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-24.04] | |
| target: [android] | |
| graphics: [VULKAN, OPENGL_ES] | |
| chapter: [Chapter1, Chapter2, Chapter3, Chapter4, Chapter5] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build ${{ matrix.chapter }} using ${{ matrix.gfx }} on ${{ matrix.os }} | |
| run: | | |
| echo "Building ${{ matrix.chapter }} using ${{ matrix.gfx }} on ${{ matrix.os }} ${{ github.ref_name }}" | |
| export GFX=${{ matrix.graphics }} | |
| cd ${{ matrix.chapter }} | |
| chmod 755 gradlew | |
| ./gradlew assembleDebug |