Update PX4 Firmware metadata Tue Sep 24 17:29:04 UTC 2024 #468
This file contains 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-Linux | |
on: | |
push: | |
branches: | |
- master | |
- 'Stable*' | |
tags: | |
- 'v*' | |
paths-ignore: | |
- 'deploy/**' | |
- 'docs/**' | |
pull_request: | |
paths-ignore: | |
- 'deploy/**' | |
- 'docs/**' | |
- '.github/workflows/docs_deploy.yml' | |
- '.github/workflows/linux.yml' | |
- '.github/workflows/macos.yml' | |
- '.github/workflows/windows.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
BuildType: [Release] | |
defaults: | |
run: | |
shell: bash | |
env: | |
ARTIFACT: QGroundControl.apk | |
QT_VERSION: 6.6.3 | |
GST_VERSION: 1.22.12 | |
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: ${{ matrix.BuildType == 'Release' && 'armeabi-v7a;arm64-v8a' || 'arm64-v8a' }} | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
android: 'false' | |
continue-on-error: true | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-tags: true | |
fetch-depth: 0 | |
- uses: seanmiddleditch/gha-setup-ninja@v5 | |
- name: Install CCache | |
run: | | |
wget --quiet https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-linux-x86_64.tar.xz | |
tar -xvf ccache-*-linux-x86_64.tar.xz | |
cd ccache-*-linux-x86_64 | |
sudo make install | |
- 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 }} | |
- run: mkdir ${{ runner.temp }}/shadow_build_dir | |
- 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=${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request' && 'ON' || 'OFF' }} | |
-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: Upload Build File | |
if: matrix.BuildType == 'Release' | |
uses: ./.github/actions/upload | |
with: | |
artifact_name: ${{ env.ARTIFACT }} | |
aws_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
source: '' |