Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions .github/workflows/android-linux-6.6.3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
name: Android-Linux-6.6.3

on:
push:
branches:
- master
- 'Stable*'
tags:
- 'v*'
pull_request:
paths:
- '.github/workflows/android-linux.yml'
- 'deploy/android/**'
- 'src/**'
- 'android/**'
- 'CMakeLists.txt'
- 'cmake/**'

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
BuildType: [Release]

defaults:
run:
shell: bash

env:
ARTIFACT: QGroundControl.apk
PACKAGE: QGroundControl
QT_VERSION: 6.6.3
QT_ANDROID_ABIS: ${{ matrix.BuildType == 'Release' && 'armeabi-v7a;arm64-v8a' || 'arm64-v8a' }}

steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
fetch-tags: true

- name: Initial Setup
uses: ./.github/actions/common

- name: Install Qt for Android
uses: ./.github/actions/qt-android
with:
host: linux
arch: gcc_64
version: ${{ env.QT_VERSION }}
abis: ${{ env.QT_ANDROID_ABIS }}
cpm-modules: ${{ runner.temp }}/shadow_build_dir/cpm_modules

- name: Setup android signing for master release
if: github.ref == 'refs/heads/master' && github.event_name != 'pull_request'
run: |
echo "QGC_ANDROID_KEYSTORE_STORE_PASS=${{ secrets.ANDROID_KEYSTORE_PASSWORD }}" >> $GITHUB_ENV
echo "QGC_ANDROID_KEYSTORE_KEY_PASS=${{ secrets.ANDROID_KEYSTORE_PASSWORD }}" >> $GITHUB_ENV
echo "QGC_ANDROID_KEYSTORE_PATH=${{ github.workspace }}/deploy/android/android_release.keystore" >> $GITHUB_ENV
echo "QGC_ANDROID_KEYSTORE_ALIAS=QGCAndroidKeyStore" >> $GITHUB_ENV

- name: Setup android signing for pull request
if: github.event_name == 'pull_request'
run:
echo "QGC_ANDROID_KEYSTORE_STORE_PASS=android" >> $GITHUB_ENV
echo "QGC_ANDROID_KEYSTORE_KEY_PASS=android" >> $GITHUB_ENV
echo "QGC_ANDROID_KEYSTORE_PATH=${{ github.workspace }}/deploy/android/debug.keystore" >> $GITHUB_ENV
echo "QGC_ANDROID_KEYSTORE_ALIAS=androiddebugkey" >> $GITHUB_ENV

- name: Configure
working-directory: ${{ runner.temp }}/shadow_build_dir
run: ${{ env.QT_ROOT_DIR }}/bin/qt-cmake -S ${{ github.workspace }} -B . -G Ninja
-DCMAKE_BUILD_TYPE=${{ matrix.BuildType }}
-DQT_ANDROID_ABIS="${{ env.QT_ANDROID_ABIS }}"
-DQT_ANDROID_BUILD_ALL_ABIS=OFF
-DQT_HOST_PATH="${{ env.QT_ROOT_DIR }}/../gcc_64"
-DQT_ANDROID_SIGN_APK=ON
-DQT_ANDROID_KEYSTORE_STORE_PASS=$QGC_ANDROID_KEYSTORE_STORE_PASS
-DQT_ANDROID_KEYSTORE_KEY_PASS=$QGC_ANDROID_KEYSTORE_KEY_PASS
-DQT_ANDROID_KEYSTORE_PATH=$QGC_ANDROID_KEYSTORE_PATH
-DQT_ANDROID_KEYSTORE_ALIAS=$QGC_ANDROID_KEYSTORE_ALIAS
-DQT_DEBUG_FIND_PACKAGE=ON
-DQGC_STABLE_BUILD=${{ github.ref_type == 'tag' || contains(github.ref, 'Stable') && 'ON' || 'OFF' }}

- name: Build
working-directory: ${{ runner.temp }}/shadow_build_dir
run: cmake --build . --target all --config ${{ matrix.BuildType }}

- run: cp ${{ runner.temp }}/shadow_build_dir/android-build/*.apk ${{ runner.temp }}/shadow_build_dir/${{ env.ARTIFACT }}

- name: Save APK
uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE }}
path: ${{ runner.temp }}/shadow_build_dir/android-build/*.apk
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
maven { url = 'https://jitpack.io' }
}

if (qtGradlePluginType) {
if (project.plugins.findPlugin("qtGradlePluginType") != null) {
apply plugin: qtGradlePluginType
} else {
// Fall back to the default Android application plugin if qtGradlePluginType
Expand Down
Binary file added deploy/android/debug.keystore
Binary file not shown.
Loading