1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-02-06 05:08:22 +08:00

53 lines
1.2 KiB
YAML
Raw Normal View History

2020-01-14 21:11:18 +09:00
# ios.yml
2020-01-14 21:07:09 +09:00
# base code from https://github.com/jaredtao/HelloActions-Qt
name: IOS
on:
push:
paths-ignore:
2020-01-14 21:02:48 +09:00
- 'Example.md'
- 'HowToSetProject.ko.md'
- 'HowToSetProject.md'
- 'README.ko.md'
- 'README.md'
2020-01-14 21:02:48 +09:00
- 'TestEnv.md'
- 'ToTest.md'
- 'ToUpgrade.md'
2020-01-14 21:20:21 +09:00
- 'Vision.md'
2020-01-14 21:02:48 +09:00
- 'LICENSE'
pull_request:
paths-ignore:
2020-01-14 21:02:48 +09:00
- 'Example.md'
- 'HowToSetProject.ko.md'
- 'HowToSetProject.md'
- 'README.ko.md'
- 'README.md'
2020-01-14 21:02:48 +09:00
- 'TestEnv.md'
- 'ToTest.md'
- 'ToUpgrade.md'
2020-01-14 21:20:21 +09:00
- 'Vision.md'
2020-01-14 21:02:48 +09:00
- 'LICENSE'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
2021-03-12 21:00:53 +09:00
os: [macos-10.15]
qt_ver: [5.12.10,5.15.2]
qt_target: [ios]
steps:
- name: Install Qt
2021-06-21 20:58:58 +09:00
uses: jurplel/install-qt-action@v2.10.0
with:
version: ${{ matrix.qt_ver }}
target: ${{ matrix.qt_target }}
2021-03-12 21:00:53 +09:00
- 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