mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-30 05:02:52 +08:00
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
# ios.yml
|
|
# base code from https://github.com/jaredtao/HelloActions-Qt
|
|
|
|
name: IOS
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'Example.md'
|
|
- 'HowToSetProject.ko.md'
|
|
- 'HowToSetProject.md'
|
|
- 'README.ko.md'
|
|
- 'README.md'
|
|
- 'TestEnv.md'
|
|
- 'ToTest.md'
|
|
- 'ToUpgrade.md'
|
|
- 'Vision.md'
|
|
- 'LICENSE'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'Example.md'
|
|
- 'HowToSetProject.ko.md'
|
|
- 'HowToSetProject.md'
|
|
- 'README.ko.md'
|
|
- 'README.md'
|
|
- 'TestEnv.md'
|
|
- 'ToTest.md'
|
|
- 'ToUpgrade.md'
|
|
- 'Vision.md'
|
|
- 'LICENSE'
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-10.15]
|
|
qt_ver: [5.12.10,5.15.2]
|
|
qt_target: [ios]
|
|
steps:
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2.10.0
|
|
with:
|
|
version: ${{ matrix.qt_ver }}
|
|
target: ${{ matrix.qt_target }}
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
- name: build ios
|
|
run: |
|
|
cd HelloAndroid
|
|
qmake -r -spec macx-ios-clang CONFIG+=release CONFIG+=iphoneos
|
|
make
|