Skip to content

Write sheetFormatProps #426

Write sheetFormatProps

Write sheetFormatProps #426

Workflow file for this run

# 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