adaptive fast reply for chat permissions #50
Workflow file for this run
This file contains hidden or 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 CI | |
| on: | |
| pull_request: | |
| branches: ["master", "develop"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Make all scripts executable | |
| run: | | |
| chmod +x gradlew | |
| chmod +x presentation/src/main/cpp/build.sh | |
| - name: Build libvpx | |
| run: cd presentation/src/main/cpp && ./build.sh | |
| - name: Build Debug APK (without GMS) | |
| run: ./gradlew assembleDebug | |
| - name: Run Unit Tests | |
| run: ./gradlew testDebugUnitTest | |
| - name: Upload universal APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: app-universal-no-appid | |
| path: app/build/outputs/apk/debug/app-universal-debug.apk | |
| - name: Upload arm64-v8a APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: app-arm64-v8a-no-appid | |
| path: app/build/outputs/apk/debug/app-arm64-v8a-debug.apk | |
| - name: Upload armeabi-v7a APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: app-armeabi-v7a-no-appid | |
| path: app/build/outputs/apk/debug/app-armeabi-v7a-debug.apk | |
| - name: Upload x86_64 APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: app-x86_64-no-appid | |
| path: app/build/outputs/apk/debug/app-x86_64-debug.apk |