Chats search + chats folder refactor #74
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 Official Debug APK | |
| run: ./gradlew assembleOfficialDebug | |
| - name: Run Official Debug Unit Tests | |
| run: ./gradlew testOfficialDebugUnitTest | |
| - name: Build Telemt Debug APK | |
| run: ./gradlew assembleTelemtDebug | |
| - name: Run Telemt Debug Unit Tests | |
| run: ./gradlew testTelemtDebugUnitTest |