You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
name: Android |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
paths-ignore: |
|
- '*.md' |
|
pull_request: |
|
types: [ opened, synchronize ] |
|
paths-ignore: |
|
- '*.md' |
|
|
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.ref }} |
|
cancel-in-progress: true |
|
|
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Install gettext |
|
run: sudo apt-get update && sudo apt-get install -y gettext |
|
|
|
- name: Checkout |
|
uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
|
|
- name: set up JDK 17 |
|
uses: actions/setup-java@v3 |
|
with: |
|
java-version: '17' |
|
distribution: 'adopt' |
|
cache: gradle |
|
|
|
- name: Install CMake |
|
run: | |
|
$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "cmake;3.31.0" |
|
|
|
- name: Cache CMake build folder |
|
uses: actions/cache@v3 |
|
with: |
|
path: android-project/app/.cxx |
|
key: ${{ github.workflow }}-v3-${{ github.sha }} |
|
restore-keys: ${{ github.workflow }}-v3- |
|
|
|
- name: Build |
|
working-directory: ${{github.workspace}} |
|
shell: bash |
|
run: cd android-project && ./gradlew assembleDebug |
|
|
|
- name: Upload-Package |
|
if: ${{ !env.ACT }} |
|
uses: actions/upload-artifact@v5 |
|
with: |
|
name: devilutionx-debug.apk |
|
path: android-project/app/build/outputs/apk/debug/app-debug.apk |
|
|
|
- name: Clean up artifacts |
|
run: rm -rf android-project/app/build/outputs
|
|
|