mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Android CI
This commit is contained in:
parent
6d88f8b1d6
commit
c84bc14122
1 changed files with 36 additions and 0 deletions
36
.github/workflows/android.yml
vendored
Normal file
36
.github/workflows/android.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
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.x
|
||||||
|
path: 'SDL'
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
cd ${SRC_DIR_PATH}
|
||||||
|
./gradlew build
|
Loading…
Reference in a new issue