Update Qlyra application
Build Android (FCM) / build-android-fcm (push) Canceled after 0s
Build Android / build-android (push) Canceled after 0s
Build iOS / build-ios (push) Canceled after 0s
Build Linux / build-linux (push) Canceled after 0s
Build macOS / build-macos (push) Canceled after 0s
Build Windows / build-windows (push) Canceled after 0s
Release (main) / android (oneme) (push) Canceled after 0s
Release (main) / android (qlyra) (push) Canceled after 0s
Release (main) / windows (push) Canceled after 0s
Release (main) / linux (push) Canceled after 0s
Release (main) / macos (push) Canceled after 0s
Release (main) / ios (push) Canceled after 0s
Release (main) / release (push) Canceled after 0s

This commit is contained in:
sevenhill
2026-08-30 22:53:15 +03:00
parent 116d3fb1d3
commit 50816588e4
4812 changed files with 14559 additions and 403 deletions
+60
View File
@@ -0,0 +1,60 @@
name: Android Emulator Smoke
on:
pull_request:
branches:
- main
- 'dev/**'
workflow_dispatch:
jobs:
launch-qlyra:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'
cache: gradle
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.44.3'
channel: stable
cache: true
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
targets: aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android
- name: Install dependencies
run: flutter pub get
- name: Build smoke APK
run: flutter build apk --debug --flavor qlyra
- name: Launch on emulator
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 35
arch: x86_64
profile: pixel_6
disable-animations: true
script: |
adb install -r build/app/outputs/flutter-apk/app-qlyra-debug.apk
adb logcat -c
adb shell am start -W -n ru.qlyra.app/.MainActivity
sleep 10
adb shell pidof ru.qlyra.app
if adb logcat -d '*:E' | grep -E 'FATAL EXCEPTION|Process: ru.qlyra.app'; then
exit 1
fi
+9
View File
@@ -49,6 +49,15 @@ jobs:
- name: Get dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed lib test
- name: Flutter analyze
run: flutter analyze --no-fatal-infos lib test
- name: Flutter tests
run: flutter test
- name: Configure Gradle
run: |
mkdir -p ~/.gradle
+9
View File
@@ -49,6 +49,15 @@ jobs:
- name: Get dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed lib test
- name: Flutter analyze
run: flutter analyze --no-fatal-infos lib test
- name: Flutter tests
run: flutter test
- name: Configure Gradle
run: |
mkdir -p ~/.gradle
+20 -1
View File
@@ -37,8 +37,21 @@ jobs:
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed lib test
- name: Flutter analyze
run: flutter analyze
run: flutter analyze --no-fatal-infos lib test
- name: Flutter tests with coverage
run: flutter test --coverage
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: flutter-dev-coverage
path: coverage/lcov.info
if-no-files-found: error
- name: Configure Gradle
run: |
@@ -96,6 +109,12 @@ jobs:
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed lib test
- name: Flutter tests
run: flutter test
- name: Build iOS (no codesign)
run: |
flutter config --no-enable-swift-package-manager
+14 -1
View File
@@ -36,8 +36,21 @@ jobs:
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed lib test
- name: Flutter analyze
run: flutter analyze
run: flutter analyze --no-fatal-infos lib test
- name: Flutter tests with coverage
run: flutter test --coverage
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: flutter-main-coverage
path: coverage/lcov.info
if-no-files-found: error
- name: Configure Gradle
run: |
+25
View File
@@ -0,0 +1,25 @@
name: Dependency Vulnerability Scan
on:
pull_request:
branches:
- main
- 'dev/**'
merge_group:
branches:
- main
schedule:
- cron: '30 2 * * 1'
workflow_dispatch:
permissions:
actions: read
contents: read
security-events: write
jobs:
scan:
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.5.0
with:
scan-args: |-
--lockfile=./pubspec.lock