Cherry-pick GCC 14 fix to chaos branch #42
Workflow file for this run
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: CI (Android) | |
# Trigger this workflow on push or pull request | |
on: [push, pull_request] | |
env: | |
SRC_DIR_PATH: VVVVVV/desktop_version/VVVVVV-android | |
jobs: | |
build: | |
name: Build (Android) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
path: 'VVVVVV' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- uses: actions/checkout@v4 | |
with: | |
repository: libsdl-org/SDL | |
ref: release-2.28.5 | |
path: 'SDL' | |
- name: Build SDL | |
run: | | |
sudo apt-get -y install ninja-build | |
cd SDL | |
./build-scripts/android-prefab.sh | |
mvn install:install-file -Dfile=build-android-prefab/prefab-2.28.5/SDL2-2.28.5.aar -DpomFile=build-android-prefab/prefab-2.28.5/SDL2-2.28.5.pom | |
- name: Build | |
run: | | |
cd ${SRC_DIR_PATH} | |
./gradlew build |