udpate workflows

debug apk not built automatically any more
automatic build does not produce an apk, but only needs to build a single abi
This commit is contained in:
Helium314 2024-03-24 17:43:35 +01:00
parent 700867d6d6
commit d867c6127c
2 changed files with 43 additions and 9 deletions

View file

@ -1,14 +1,6 @@
name: Build debug
name: Build debug APK
on:
push:
# don't run on main. I noticed I often don't push commits to avoid unnecessary workflow runs
branches-ignore: [ main ]
paths:
- 'app/**'
pull_request:
paths:
- 'app/**'
workflow_dispatch:
jobs:

42
.github/workflows/build-test-auto.yml vendored Normal file
View file

@ -0,0 +1,42 @@
name: Test build
# builds only for a single abi and does not produce an APK
on:
push:
# don't run on main. I noticed I often don't push commits to avoid unnecessary workflow runs
branches-ignore: [ main ]
paths:
- 'app/**'
pull_request:
paths:
- 'app/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: gradle/actions/setup-gradle@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Archive reports for failed job
uses: actions/upload-artifact@v4
with:
name: reports
path: '*/build/reports'
if: ${{ failure() }}