Skip to content

Commit

Permalink
Asdfasdf
Browse files Browse the repository at this point in the history
  • Loading branch information
rbessems committed Feb 28, 2024
1 parent 74bce7c commit 3972603
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Build Site'
# on:
# pull_request:
# branches: [ "main" ]
# tags:
# - "v*.*.*"
# workflow_dispatch:

jobs:
build:
name: Android Build
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
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
1 change: 1 addition & 0 deletions .github/workflows/build-host-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
build:
name: Windows Build
runs-on: ${{matrix.os}}
strategy:
fail-fast: true
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-host-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

jobs:
build:
if: false
name: Windows Build
runs-on: ${{matrix.os}}
strategy:
fail-fast: true
Expand Down

0 comments on commit 3972603

Please sign in to comment.