1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00
Workflow config file is invalid. Please check your config file: yaml: line 7: did not find expected '-' indicator
2020-01-14 21:02:48 +09:00

61 lines
1.5 KiB
YAML

# base code from https://github.com/jaredtao/HelloActions-Qt
# ios.yml
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'
- '.github/workflows/ubuntu.yml'
- '.github/workflows/windows.yml'
- '.github/workflows/android.yml'
- '.github/workflows/macos.yml'
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'
- '.github/workflows/ubuntu.yml'
- '.github/workflows/windows.yml'
- '.github/workflows/android.yml'
- '.github/workflows/macos.yml'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
qt_ver: [5.12.6]
qt_target: [ios]
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v2.0.0
with:
version: ${{ matrix.qt_ver }}
target: ${{ matrix.qt_target }}
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: build ios
run: |
cd HelloAndroid
qmake -r -spec macx-ios-clang CONFIG+=release CONFIG+=iphoneos
make