[android] Update github ci script to new android structure

Signed-off-by: Arnaud Vergnet <arnaud.vergnet@mailo.com>
This commit is contained in:
Arnaud Vergnet 2023-06-24 18:14:52 +02:00 committed by Roman Tsisyk
parent b39a6dbb5f
commit 2150cafdb6
4 changed files with 10 additions and 10 deletions

View file

@ -4,8 +4,8 @@ on:
pull_request:
paths:
- .github/workflows/android-check-metadata.yaml # Run check on self change
- android/src/fdroid/**
- android/src/google/**
- android/app/src/main/fdroid/**
- android/app/src/main/google/**
- tools/python/check_store_metadata.py
jobs:

View file

@ -14,8 +14,8 @@ on:
- LICENSE
- NOTICE
- README.md
- android/src/fdroid/**
- android/src/google/**
- android/app/src/main/fdroid/**
- android/app/src/main/google/**
- iphone/**
- data/strings/**
- docs/**
@ -106,5 +106,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: android-arm64-v8a-${{ matrix.flavor }}
path: android/build/outputs/apk/**/OrganicMaps-*.apk
path: android/app/build/outputs/apk/**/OrganicMaps-*.apk
if-no-files-found: error

View file

@ -82,7 +82,7 @@ jobs:
run: |
gcloud auth activate-service-account --key-file android/firebase-test-lab.json
gcloud config set project omapsapp
gcloud firebase test android run --app ./android/build/outputs/apk/google/debug/OrganicMaps-*-google-debug.apk \
gcloud firebase test android run --app ./android/app/build/outputs/apk/google/debug/OrganicMaps-*-google-debug.apk \
--device model=panther,version=33 \
--device model=bluejay,version=32 \
--device model=b2q,version=31 \

View file

@ -3,8 +3,8 @@ on:
workflow_dispatch: # Manual trigger
env:
RELEASE_NOTES: android/src/google/play/release-notes/en-US/default.txt
FDROID_VERSION: android/src/fdroid/play/version.yaml
RELEASE_NOTES: android/app/src/main/google/play/release-notes/en-US/default.txt
FDROID_VERSION: android/app/src/main/fdroid/play/version.yaml
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
jobs:
@ -151,7 +151,7 @@ jobs:
echo ""
echo "sha256sum:"
echo -e '\n```'
(cd ./android/build/outputs/apk/web/release/ && sha256sum OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk) | tr -d '\n'
(cd ./android/app/build/outputs/apk/web/release/ && sha256sum OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk) | tr -d '\n'
echo -e '\n```'
} > ${{ runner.temp }}/release-notes.txt
@ -164,5 +164,5 @@ jobs:
name: ${{ needs.tag.outputs.tag }}
tag_name: ${{ needs.tag.outputs.tag }}
discussion_category_name: 'Announcements'
files: ./android/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk
files: ./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk
fail_on_unmatched_files: true