Work on components #160
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
#------------------------------------------------------------------------------- | |
# Workflow configuration | |
#------------------------------------------------------------------------------- | |
name: "Mobile CI builds (qmake)" | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
#------------------------------------------------------------------------------- | |
# Define application name & version | |
#------------------------------------------------------------------------------- | |
env: | |
APP_NAME: "QmlAppTemplate" | |
APP_VERSION: "0.7" | |
QT_VERSION: "6.6.3" | |
#------------------------------------------------------------------------------- | |
# Workflow jobs | |
#------------------------------------------------------------------------------- | |
jobs: | |
## Android build ############################################################# | |
build-android: | |
name: "Android CI build" | |
runs-on: ubuntu-20.04 | |
steps: | |
# Checkout repository (and submodules) | |
- name: Checkout repository (and submodules) | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# Java environment (already installed in 'ubuntu-20.04') | |
- name: Setup Java environment | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
# Android environment (already installed in 'ubuntu-20.04') | |
#- name: Setup Android environment | |
# uses: android-actions/setup-android@v3 | |
#- name: Install Android SDK / NDK / tools | |
# run: | | |
# sdkmanager "platforms;android-34" | |
# sdkmanager "ndk;26.1.10909125" | |
# sdkmanager "build-tools;34.0.0" | |
# Install Qt (desktop & Android) | |
- name: Install Qt (desktop) | |
uses: jurplel/install-qt-action@v4 | |
with: | |
version: ${{env.QT_VERSION}} | |
host: 'linux' | |
target: 'android' | |
arch: 'android_arm64_v8a' | |
extra: '--autodesktop' | |
# Setup env | |
- name: Setup env | |
run: | | |
qmake --version | |
# Build application | |
- name: Build application | |
run: | | |
qmake ${{env.APP_NAME}}.pro CONFIG+=release | |
make -j$(nproc) | |
## iOS build ################################################################# | |
build-ios: | |
name: "iOS CI build" | |
runs-on: macos-12 | |
steps: | |
# Checkout repository (and submodules) | |
- name: Checkout repository (and submodules) | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# Install Qt (iOS & desktop) | |
- name: Install Qt (iOS & desktop) | |
uses: jurplel/install-qt-action@v4 | |
with: | |
version: ${{env.QT_VERSION}} | |
host: 'mac' | |
target: 'ios' | |
extra: '--autodesktop' | |
# Setup env | |
- name: Setup env | |
run: | | |
qmake --version | |
# Build application | |
- name: Build application | |
run: | | |
qmake ${{env.APP_NAME}}.pro CONFIG+=release | |
make -j`sysctl -n hw.logicalcpu` |