Reworked toolbar to show guided action confirm button #3820
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-Windows | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'Stable*' | |
| tags: | |
| - 'v*' | |
| paths-ignore: | |
| - 'docs/**' # Do not trigger for any changes under docs | |
| pull_request: | |
| paths: | |
| - '.github/workflows/android-windows.yml' | |
| - 'deploy/android/**' | |
| - 'src/**' | |
| - 'android/**' | |
| - 'CMakeLists.txt' | |
| - 'cmake/**' | |
| - 'translations/*' | |
| # concurrency: | |
| # group: ${{ github.workflow }}-${{ github.ref }} | |
| # cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| BuildType: [Release] | |
| defaults: | |
| run: | |
| shell: cmd | |
| env: | |
| ARTIFACT: QGroundControl.apk | |
| QT_VERSION: 6.10.1 | |
| QT_ANDROID_KEYSTORE_PATH: ${{ github.workspace }}\deploy\android\android_release.keystore | |
| QT_ANDROID_KEYSTORE_ALIAS: QGCAndroidKeyStore | |
| QT_ANDROID_KEYSTORE_STORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} | |
| QT_ANDROID_KEYSTORE_KEY_PASS: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} | |
| QT_ANDROID_ABIS: 'arm64-v8a' | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 1 | |
| fetch-tags: true | |
| - name: Initial Setup | |
| uses: ./.github/actions/common | |
| - name: Install Qt for Android | |
| uses: ./.github/actions/qt-android | |
| with: | |
| host: windows | |
| arch: win64_msvc2022_64 | |
| version: ${{ env.QT_VERSION }} | |
| abis: ${{ env.QT_ANDROID_ABIS }} | |
| cpm-modules: ${{ runner.temp }}\build\cpm_modules | |
| - name: Configure | |
| working-directory: ${{ runner.temp }}/build | |
| run: ${{ env.QT_ROOT_DIR }}/bin/qt-cmake -S ${{ github.workspace }} -B . -G Ninja | |
| -DCMAKE_BUILD_TYPE=${{ matrix.BuildType }} | |
| -DCMAKE_WARN_DEPRECATED=FALSE | |
| -DQT_ANDROID_ABIS="${{ env.QT_ANDROID_ABIS }}" | |
| -DQT_ANDROID_BUILD_ALL_ABIS=OFF | |
| -DQT_HOST_PATH="${{ env.QT_ROOT_DIR }}/../msvc2022_64" | |
| -DQT_ANDROID_SIGN_APK=OFF | |
| -DQGC_STABLE_BUILD=${{ github.ref_type == 'tag' || contains(github.ref, 'Stable') && 'ON' || 'OFF' }} | |
| - name: Build | |
| working-directory: ${{ runner.temp }}/build | |
| run: cmake --build . --target all --config ${{ matrix.BuildType }} --parallel | |
| - name: Save APK | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: ${{ env.ARTIFACT }} | |
| path: ${{ runner.temp }}/build/android-build/*.apk |