Fix: Folder deletion not working #3
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: Android PR CI | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'media/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: Build with Gradle | |
env: | |
MONSTER_COMPENDIUM_KEYSTORE_PASSWORD: ${{ secrets.MONSTER_COMPENDIUM_KEYSTORE_PASSWORD }} | |
run: ./gradlew assembleDebug testDebugUnitTest jvmTest -Pdev | |
- name: Run Android UI tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 29 | |
script: ./gradlew :app:connectedCheck | |
- name: Verify database migration | |
run: chmod +x ./scripts/sqldelight/verifyDatabaseMigration && ./scripts/sqldelight/verifyDatabaseMigration | |
- name: Generate AAB | |
env: | |
MONSTER_COMPENDIUM_KEYSTORE_PASSWORD: ${{ secrets.MONSTER_COMPENDIUM_KEYSTORE_PASSWORD }} | |
run: ./gradlew bundleRelease | |
- name: Upload the test report | |
if: failure() | |
uses: actions/[email protected] | |
with: | |
name: TestReport | |
path: | | |
feature-monster-compendium/build/reports/tests | |
data/build/reports/tests | |
domain/build/reports/tests | |
- name: Upload an APK | |
uses: actions/[email protected] | |
with: | |
name: app-dev-release.apk | |
path: app/build/outputs/apk/release/app-dev-release.apk | |
- name: Upload an APK metadata JSON | |
uses: actions/[email protected] | |
with: | |
name: output-metadata.json | |
path: app/build/outputs/apk/release/output-metadata.json | |
- name: Upload an AAB | |
uses: actions/[email protected] | |
with: | |
name: app-release.aab | |
path: app/build/outputs/bundle/release/app-release.aab |